반응형
프로젝트 열기할때 에러가 발생하였다.
"C:\Microsoft.CSharp.targets" 프로젝트 찾을 수 없습니다. <Import> 선언에 지정한 경로가 올바르지 그리고 파일이 디스크에 있는지 확인하십시오.
라는 에러가 발행하였다.
원문)
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" />
아래와 같이 변경하면 된다. NotePad를 이용해서 변경해도 된다.
변경후 실행하면 정상경로에서 파일을 불러오게 된다.