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
|
1
|
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 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. |
||
|
|
|
|
ok so what if it say this: between the gt/lt signs Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight\v3.0\Microsoft.Silverlight.CSharp.targets" / how do i fix the targets error? |
||
|
|
|
|
Thanks. Solved my problem too ! |
||
|
|
|
|
THANKS MAN!! |
||
|
|
|
|
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. |
||
|
|
|
|
Thanks it solved my issue |
||
|
|
|
|
Thanks, it was very helpful |
||
|
|
|
|
Open your csproj file in notepad (or notepad++) Find the line:
and change it to |
||
|