Tagged Questions
2
votes
1answer
1k views
Why are my binaries not placed in the /bin/release folder when I build a Windows Service in C#?
I am new to C# and VS 2010, and am following an online guide to creating a C# Windows Service in Visual Studio 2010.
When I try and build the application however, I don't get any files created under ...
2
votes
6answers
1k views
How to find out if a .Net Assembly was compiled with the TRACE or DEBUG flag
Is there any way to find out if an Assembly has been compiled with the TRACE or DEBUG flag set without modifying the assembly.
2
votes
3answers
3k views
How to generate PDB's for .net managed projects in release mode?
I know PDBs are generated for managed projects in .NET by giving the compiler the /debug argument.
Is there a way to specify this in the VS (2005) GUI?
The only way I could get it to generate PDBs ...
1
vote
3answers
244 views
Is there a way to debug an already running application compiled in release mode?
I have a dotnet windows service that's currently hung, but running. Is there anyway to attach a debugger to it, despite the lack of symbols; and that it's already running?