vote up 11 vote down star
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

flag

Thanks for asking this question. Needed its answer today. – John W May 4 at 20:19

8 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

Thanks. Solved my problem too !

link|flag
vote up 0 vote down

THANKS MAN!!

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Thanks it solved my issue

link|flag
vote up 0 vote down

Thanks, it was very helpful

link|flag
vote up 16 vote down check

Open your csproj file in notepad (or notepad++) Find the line:

<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

and change it to

<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
link|flag
Thanks for your answer! – John W May 4 at 20:19

Your Answer

Get an OpenID
or

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