I'm checking out code for a project where contributors use different dev tools for coding in c sharp (C#). My .csproj file was manipulated by someone using Sharp develop and now I get 'The target "build" does not exist in the project'.

  • How can I correct this?

I am using Visual Studio 2008 SP 1.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

If you were to do it manually, I would take all the files and add them back to a new project file one by one.

link|improve this answer
Yep, I should have thought of that first. – CountCet Jan 10 '10 at 0:11
feedback

But I hope that is not a right solution. You need to find "< Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />" is available in the Project file.If not add it to the end.

Note : For VS2008, this may be $(MSBuildToolsPath).

link|improve this answer
In case of SharePoint 2007 project that uses the stsdev.exe utility adding <Import Project="DeploymentFiles\Microsoft.SharePoint.targets" /> in the .csproj file may help. – Marek Grzenkowicz Aug 11 '10 at 16:16
feedback

I had the same problem when I upgraded a project built in VS2005 to VS2010 Express. Initially the VS2010 refused to load the project with error message "Project is not supported by this installation". After trying many solutions finally it worked and my guess is it worked when two lines were removed from the project file that related to build target. However it presented a new problem that the project would not build. Of course this makes sense as I removed the entries from project file that told Visual Studio how to build the project.

Finally got hold of another project that was working on VS2010 Express and copied following lines to the project that was failing. It worked after that.

 <Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />

Hope this helps someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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