Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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. Please build the project and retry, or set the OutputPath and AssemblyName properties appropriately to point at the correct location for the target assembly.

My output path is set correctly to bin\Debug, but the exe is never created in that folder. Instead, all I get are the exe.config, vshost.exe, and vshost.exe.config files.

Any idea what's going on?

share|improve this question
Can you post relevant solution/project files? – Kevin Crowell Aug 18 '10 at 20:25

12 Answers

up vote 0 down vote accepted

You could open the project file with a text editor and replace 'c:\target' by 'bin\Debug'

share|improve this answer
  1. Make sure that output path of project is correct (Project > Properties > Build > Output path)
  2. Go in menu to Build > Configuration Manager, and check if your main/entry project has checked Build. If not, check it.
share|improve this answer
4  
2 did it for me, still haven't figured out how it got unchecked. – arviman Apr 3 '12 at 18:03

I've had the same problem;

Here are solutions that didn't work for me:

  • Building/rebuilding entire solution
  • Making sure the output path was correct (MyProject > Properties > Build > Output > Output path)

Here's the solution that did work for me:

  • Rebuilding just the project
share|improve this answer
Did you find what is cousin this problem? – Denis Besic Dec 23 '11 at 13:35
@DenisBesic, No. – Jacob Spire Dec 25 '11 at 7:47
1  
Exactly the same problem... this is the only thing that worked! Thanks, +1 – BenAlabaster Mar 14 at 14:09

I have solve this type of problem follow this step

1.VS2010 right click on the solution explorer and select the Build.

  1. Again press Ctrl+F5 or F5
share|improve this answer

I just stumbled across this problem, but I'm using Visual Web Developer Express 2010 and couldn't find any wrong path either within IDE or in the project file. Rebuilding or deleting build folders didn't help.

But after examining the projects .user file, which I've never done before, I discovered that the bad path was in there. Very simple if one knows where to look.

share|improve this answer

Please follow the below steps to overcome this problem:

  1. If you are working with VS2010, change platform target to x64
  2. Select .net framework as 3.5
  3. If you are using any custom code for Sharepoint and like to debug or deploy the use the above....and my bad sake i dont abt the .net applications
share|improve this answer
Why is the switch to x64 needed? – Johnny Graber Oct 20 '12 at 9:41

I've found that this can happen if all the files are deleted from the bin folder. ReBuild the app to force a full build: right click on the project in solution explorer and select ReBuild.

share|improve this answer

Right Click the project > Debug > Start new instance

share|improve this answer

There are many issues that can lead to this problem, after loosing 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.

share|improve this answer

This was a really annoying error!

I kept trying to start a debug instance but it just wouldn't make an exe! Though there were errors in my ConnectionString (while trying to make an SQL connection). There were two backslashes that were supposed to be a part of a path and the tutorial I was following told me to ignore it.

Well, turns out that was the error. A backslash marks the beginning of some escaping that you want to do, and the way to have a backslash displayed is \\ instead of \.

Got rid of that, and it worked for me.

EDIT: It would seem that you have to get rid of the tiny errors that you have made while writing your code to let it compile properly.

share|improve this answer

I have solved this problem by changing the Platform Target to "any CPU".

share|improve this answer

Here is the solution for this problem, no need to change anything for this problem. You all know C# is case sensitive language and we have to write all methods and statements in correct case. We all are just missing this thing and we just have to change method 'main() --> Main()' This thing solved my problem please let me know if you still find any :-)

share|improve this answer
Anyone tried this thing? – user857646 Oct 11 '11 at 7:04
1  
Does not work for me. – Denis Besic Dec 23 '11 at 13:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.