We just converted a WPF application to VS2010. When I press F5, the solution builds but then does not run.
If I do CNTL+F5 (start without debugging) the app runs just fine.
Any ideas?
Thanks, jeff
|
We just converted a WPF application to VS2010. When I press F5, the solution builds but then does not run. If I do CNTL+F5 (start without debugging) the app runs just fine. Any ideas? Thanks, jeff |
|||||||||
|
|
Not sure what it was. Deleted .suo file, closed VS2010, restarted machine and it was ok. |
|||||
|
|
|
you might be using a different keyboard scheme than the standard C# (or for some reason, the shortcut to run has changed). check the shortcuts in |
|||
|
I've seen this be caused by a lack of an App.xaml file or something incorrect in the startup there. Make sure you have an App.xaml file and that it has something like this:
Note the StartupUri, ensure you have one and it's valid, that or you have a Startup line that points to a valid method int he App.xaml.cs |
|||
|
|
|
The project or the solution file may be corrupted. In that case, create a new one and re-add all the files and references. |
||||
|
|