When I try to build my solution, I get the following error:
Visual Studio cannot start debugging because the debug target \'c:\\target\' is missing. P
Please follow the below steps to overcome this problem:
I've had the same problem;
Here are solutions that didn't work for me:
Here's the solution that did work for me:
I have solve this type of problem follow this step
1.VS2010 right click on the solution explorer and select the Build.
I have solved this problem by changing the Platform Target to "any CPU".
There are many issues that can lead to this problem, after losing 2 days to this issue I think I have the root cause of this issue and also the problem of the Form Designer throwing an error when switching to the Design view (also seems to effect the DataSet Designer):
A language syntax error that Intellisense doesn't catch.
Once I went through my code with a fine tooth comb I found a couple of really boneheaded mistakes that I kept overlooking, once those were resolved the solution compiled just fine and the output was in the correct place.
I had this error too (in VS2010), and in my case (two projects in one solution, with one being for unit tests) the answer was to go into the solution's (not the project's) properties and set a single startup project. I would've thought it also necessary, in that project's settings, under Application, to specify the "Startup Object", but it's working for me with or without that.