프로젝트 열기할때 에러가 발생하였다.
"C:\Microsoft.CSharp.targets" 프로젝트 찾을 수 없습니다. <Import> 선언에 지정한 경로가 올바르지 그리고 파일이 디스크에 있는지 확인하십시오.

"C:\Microsoft.CSharp.targets" 프로젝트 찾을 수 없습니다. <Import> 선언에 지정한 경로가 올바르지 그리고 파일이 디스크에 있는지 확인하십시오.
#해결
참고 URL
http://stackoverflow.com/questions/5694/the-imported-project-cmicrosoftcsharptargets-was-not-found
// 노란색 부분으로 바꾸면 해결
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" />
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" />
# 추가
From : http://stackoverflow.com/questions/5694/the-imported-project-cmicrosoftcsharptargets-was-not-found
The imported project “C:\Microsoft.CSharp.targets” was not found
프로젝트가 "C:\Microsoft.CSharp.targets" 를 찾지 못하였습니다.
I got this error today when trying to open a Visual Studio 2008 project in Visual Studio 2005:
나는 오늘 Visual Studio 2005인 프로젝트를 Visual Studio 2008로 열때 이런 에러가 발생하였다
The imported project "C:\Microsoft.CSharp.targets" was not found
프로젝트가 "C:\Microsoft.CSharp.targets" 를 찾지 못하였습니다.
So I thought I'd post it here in case anyone else is interested
c# visualstudio
offensive?
asked Aug 8 at 5:08
lomaxx



Rss 2.0