Reputation: 453
I have C# application built in VS2010. Recently I changed something in project properties and now I have strange problem:
I can't start debugging of my application (F5). When I press F5 project compiles but then nothing happens. Even if I put some dummy code to my program.cs main function ie MessageBox.Show() it's not executed.
I can build app using "Build solution", it compiles and executes with no problems
In project properties following options are enabled: - Define debug consant - Define trace constant - Advanced bulid settings / Debug info - full
What should I change to be able to debug my app from IDE?
Upvotes: 2
Views: 1854
Reputation: 631
Try deleting .suo file. Make backup first!
Here is similar thread: VS2010, F5 - Builds but doesn't run (WPF)
Upvotes: 1