320x100
|
프로젝트 열기할때 에러가 발생하였다.
"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
|
반응형
'소프트웨어' 카테고리의 다른 글
엑셀 한칸에 두줄 넣는 방법 (1) | 2014.10.17 |
---|---|
MS 클라우드 경제성 기업의 활용 (2) | 2011.04.28 |
C# DirectoryInfo, CLRVersion 등 Environment정보보기 (5) | 2009.06.01 |
Parent Toolbar를 클릭해서 Mdi Child에 있는 함수를 호출하자 (9) | 2009.03.03 |
파라메터쿼리를 만들어주는 프로시져 (9) | 2009.02.24 |
댓글