This seems to affect only when I'm trying to perform this action on either the root solution that contains all the others, or a subfolder with multiple solutions in it. I right click on the node I want to clean/rebuild in Solution Explorer and click on the action I want, but nothing happens. Any ideas why? I even reinstalled Visual Studio, but the result is the same.

link|improve this question
Sounds like a corrupt project file. – surfasb Jan 25 at 21:12
@surfasb Could expand on this? I'm no VS whiz. Corrupt how? On a different machine, the same solution opens up just fine. What might be different? – benekastah Jan 26 at 5:01
feedback

closed as off topic by TheCompWiz, surfasb, slhck, Mokubai, studiohack Jan 27 at 19:13

Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.

2 Answers

It sounds like a corrupt project file.

It is an XMl file, but I don't recommend that novices try to fix it.

http://msdn.microsoft.com/en-us/library/5dy88c2e(v=vs.80).aspx

I would do the following:

  1. Make a backup copy of solution folder
  2. Delete everything in the original project folder
  3. Create a new Project
    a. Make sure you add to solution
    b. For the Location, choose the original project folder
  4. Move everything back.
  5. Relink References, Namespace, blah blah.

Hope that helps.

link|improve this answer
feedback

Can you go into the Bin folder and manually delete the files found? If so, then try the rebuild. If it fails, then check to see where the Bin folder is actually storing its output. Also check to see if there are any actions that move files after the build process is complete.

link|improve this answer
feedback

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