I got this error today when trying to open a Visual Studio 2008 project in Visual Studio 2005:
The imported project "C:\Microsoft.CSharp.targets" was not found
So I thought I'd post it here in case anyone else is interested
|
I got this error today when trying to open a Visual Studio 2008 project in Visual Studio 2005: The imported project "C:\Microsoft.CSharp.targets" was not found So I thought I'd post it here in case anyone else is interested
| |||
|
feedback
|
|
Open your csproj file in notepad (or notepad++) Find the line:
and change it to | |||||
|
feedback
|
|
This link on MSDN also helps a lot to understand the reason why it doesn't work. $(MSBuildToolsPath) is the path to Microsoft.Build.Engine v3.5 (inserted automatically in a project file when you create in VS2008). If you try to build your project for .Net 2.0, be sure that you changed this path to $(MSBuildBinPath) which is the path to Microsoft.Build.Engine v2.0. | |||
|
feedback
|
|
I got this after reinstalling Windows. Visual Studio was installed, and I could see the Silverlight project type in the New Project window, but opening one didn't work. The solution was simple: I had to install the Silverlight Developer runtime and/or the Microsoft Silverlight 4 Tools for Visual Studio. This may seem stupid, but I overlooked it because I thought it should work, as the Silverlight project type was available. | ||||
|
feedback
|
|
I get this when I try to build using the command line (vsbuild). Fixing the path does not work. I run VCVARS32.BAT first, then try the build. THe build works fine when I use VS2008 from the IDE. | |||
|
feedback
|
I also found that import string in a demo project (specifically "Build your own MVVM Framework" by Rob Eisenburg). If you replace that import with the one suggested by lomaxx VS2010 RTM reports that you need to install this. | |||
|
feedback
|
|
For error with Microsoft.WebApplications.targets, you can:
Here's the post: http://stack247.wordpress.com/2011/08/29/the-imported-project-microsoft-webapplications-targets-was-not-found/ | |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.