debug problem

  • Thread starter Thread starter LM
  • Start date Start date
L

LM

Whenever I debug the project, I get compile error every
other time. Even just adding comment gives me error.
It's very annoying.
Does anyone know why? I uninstalled and reinstalled
VS.net, but problem is still the same.
 
Hard to say without a LOT more information than you can give in a newsgroup
posting, but I've had that more than once, and here are some causes to look
for:


Do you have multiple projects in your solution, with the output directory of
one project changed to the \bin directory of another project? If so, you
should be aware that VS chokes on this. output projects to thier own
directory, then use CopyLocal on the references to get them into your \bin
dir

Do you have projects referencing other projects by path in visual studio,
instead of using Project when you select the reference? If so, perhaps the
build order is incorrect - check by right-clicking on the solution and
choosing "Project build order...". Verify that the order is correct.

Are you running a crappy realtime virus scanner? If so, try shutting it off.
 
Back
Top