Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The debugger cannot continue running the process. Unable to start debugging

I used this to use my XNA game in visual studio 2012, everything worked perfectly as it looks but when I click on the debug button on the top bar, "Start Debugging" and "Start Without Debugging" are grayed out and I click on them. I can still click on the "Start" arrow, when I do I get the following error message.

Error Message

like image 435
Joachim Velzel Avatar asked Jul 10 '13 01:07

Joachim Velzel


2 Answers

XNA Solutions come with 2 projects, the Game project and the Content project. Make sure you have the Game Project set as the "start up project". To do this right-click the game project and click "Set as start-up project", it should now work fine.

like image 143
Joachim Velzel Avatar answered Oct 10 '22 04:10

Joachim Velzel


In general, we have to set the project which is executable (web, winform, console, mobile app...) is start up project so that we can debug / run the solution

like image 35
Anh Bui Avatar answered Oct 10 '22 03:10

Anh Bui