VS2008 Error Report
The imported project "C:\Windows\Microsoft.NET\Framework\v3.5\Microsoft.CompactFramework.CSharp.targets" was not found.
Confirm that the path in the <import> declaration is correct, and that the file exists on disk.
원인 : C:\Windows\Microsoft.NET\Framework\v3.5microsoft.compactframework.csharp.targets 해당 파일이 존재하지 않아 에러 발생
해결 : https://www.microsoft.com/en-us/download/confirmation.aspx?id=13442 재설치
참고 : csproj 내용 중
Open your csproj file in notepad and Find the below line:
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
and change it into
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
출처 : http://stackoverflow.com/questions/36381909/microsoft-compactframework-csharp-targets-was-not-found
출처 : http://yk778899.tistory.com/entry/MicrosoftCompactFrameworkCSharptargets
Keyboard Hook (0) | 2018.06.07 |
---|---|
[C#] 세가지 Timer 와 그 차이점 (0) | 2018.06.05 |
스레드 생성과 invoke를 사용한 대리자 함수호출 (0) | 2017.09.20 |
Receive Thread 데이터 처리 및 이벤트 생성 (0) | 2017.09.20 |
C# JSON 형식으로 전송 데이터 만들기 (0) | 2017.09.20 |