Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

C# 컴파일 오류 - Your project is not referencing the ".NETFramework,Version=v3.5" framework.

재현 상황은 이렇습니다.

(제가 테스트한 버전 기준) .NET Framework 4.7.1 프로젝트 생성 후 NuGet으로부터 아무 라이브러리나 참조 추가합니다. 그럼, /obj 폴더에 이와 관련한 파일들이 생성됩니다.

project.assets.json
ConsoleApp1.csproj.nuget.g.props
ConsoleApp1.csproj.nuget.g.targets
ConsoleApp1.csproj.nuget.cache

그다음, 참조 추가했던 그 NuGet 라이브러리를 다시 제거합니다. 이후, 프로젝트의 대상 프레임워크 버전을 3.5로 낮춥니다. 이제부터는 빌드 시 다음과 같은 컴파일 오류가 발생합니다.

Project "F:\ConsoleApp1\ConsoleApp1.csproj" on node 1 (default targets).
C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Microsoft\NuGet\15.0\Microsoft.NuGet.targets(186,5): error : Your project is not referencing the ".NETFramework,Version=v3.5" framework. Add a reference to ".NETFramework,Version=v3.5" in the "frameworks" section of your project.json, and then re-run NuGet restore. [F:\ConsoleApp1\ConsoleApp1.csproj] Done Building Project "F:\ConsoleApp1\ConsoleApp1.csproj" (default targets) -- FAILED.


원인은 project.assets.json 파일에 있던 NuGet 설정이 프레임워크 버전의 변경에 따라 함께 바뀌지 않았기 때문입니다. 참조된 NuGet 라이브러리가 없으므로 관련 파일들도 업데이트하지 않았던 것입니다. 그리고 project.assets.json 파일에 보면 다음과 같이 4.7.1 설정으로 있어,

{
  "version": 3,
  "targets": {
    ".NETFramework,Version=v4.7.1": {},
    ".NETFramework,Version=v4.7.1/win": {},
    ".NETFramework,Version=v4.7.1/win-x64": {},
    ".NETFramework,Version=v4.7.1/win-x86": {}
  },
  "libraries": {},
  "projectFileDependencyGroups": {
    ".NETFramework,Version=v4.7.1": []
  },
  "packageFolders": {
    "C:\\Users\\SeongTae Jeong\\.nuget\\packages\\": {}
  },
  "project": {
    "version": "1.0.0",
    "restore": {
      ...[생략]...
      ],
      "originalTargetFrameworks": [
        "net471"
      ],
      "sources": {
        "https://api.nuget.org/v3/index.json": {},
      },
      "frameworks": {
        "net471": {
          "projectReferences": {}
        }
      }
    },
    ...[생략]...
  }
}

"Your project is not referencing the ".NETFramework,Version=v3.5" framework."라는 컴파일 오류가 발생하게 된 것입니다.

원인을 알았으니 ^^ 해결 방법은 간단합니다. 그냥 다음의 2개 파일을 지우거나,

\obj\
    project.assets.json
    [프로젝트 이름].csproj.nuget.g.props

또는 obj 폴더 자체를 삭제해 주면 됩니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 9/15/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 61  62  63  64  65  66  67  68  69  70  71  72  [73]  74  75  ...
NoWriterDateCnt.TitleFile(s)
11823정성태2/21/201913523오류 유형: 518. IIS 관리 콘솔이 뜨지 않는 문제
11822정성태2/20/201911649오류 유형: 517. docker에 설치한 MongoDB 서버로 연결이 안 되는 경우
11821정성태2/20/201912104오류 유형: 516. Visual Studio 2019 - This extension uses deprecated APIs and is at risk of not functioning in a future VS update. [1]
11820정성태2/20/201915248오류 유형: 515. 윈도우 10 1809 업데이트 후 "User Profiles Service" 1534 경고 발생
11819정성태2/20/201913917Windows: 158. 컴퓨터와 사용자의 SID(security identifier) 확인 방법
11818정성태2/20/201912842VS.NET IDE: 131. Visual Studio 2019 Preview의 닷넷 프로젝트 빌드가 20초 이상 걸리는 경우 [2]
11817정성태2/17/20199993오류 유형: 514. WinDbg Preview 실행 오류 - Error : DbgX.dll : WindowsDebugger.WindowsDebuggerException: Could not load dbgeng.dll
11816정성태2/17/201912499Windows: 157. 윈도우 스토어 앱(Microsoft Store App)을 명령행에서 직접 실행하는 방법
11815정성태2/14/201911387오류 유형: 513. Visual Studio 2019 - VSIX 설치 시 "The extension cannot be installed to this product due to prerequisites that cannot be resolved." 오류 발생
11814정성태2/12/201910211오류 유형: 512. VM(가상 머신)의 NT 서비스들이 자동 시작되지 않는 문제
11813정성태2/12/201911817.NET Framework: 809. C# - ("Save File Dialog" 등의) 대화 창에 확장 속성을 보이는 방법
11812정성태2/11/20199643오류 유형: 511. Windows Server 2003 VM 부팅 후 로그인 시점에 0xC0000005 BSOD 발생
11811정성태2/11/201913430오류 유형: 510. 서버 운영체제에 NVIDIA GeForce Experience 실행 시 wlanapi.dll 누락 문제
11810정성태2/11/201911495.NET Framework: 808. .NET Profiler - GAC 모듈에서 GAC 비-등록 모듈을 참조하는 경우의 문제
11809정성태2/11/201913003.NET Framework: 807. ClrMD를 이용해 메모리 덤프 파일로부터 특정 인스턴스를 참조하고 있는 소유자 확인
11808정성태2/8/201914061디버깅 기술: 123. windbg - 닷넷 응용 프로그램의 메모리 누수 분석
11807정성태1/29/201912365Windows: 156. 가상 디스크의 용량을 복구 파티션으로 인해 늘리지 못하는 경우 [4]
11806정성태1/29/201912132디버깅 기술: 122. windbg - 덤프 파일로부터 PID와 환경 변수 등의 정보를 구하는 방법
11805정성태1/28/201913965.NET Framework: 806. C# - int []와 object []의 차이로 이해하는 제네릭의 필요성 [4]파일 다운로드1
11804정성태1/24/201912016Windows: 155. diskpart - remove letter 이후 재부팅 시 다시 드라이브 문자가 할당되는 경우
11803정성태1/10/201911491디버깅 기술: 121. windbg - 닷넷 Finalizer 스레드가 멈춰있는 현상
11802정성태1/7/201912884.NET Framework: 805. 두 개의 윈도우를 각각 실행하는 방법(Windows Forms, WPF)파일 다운로드1
11801정성태1/1/201913917개발 환경 구성: 427. Netsh의 네트워크 모니터링 기능 [3]
11800정성태12/28/201813200오류 유형: 509. WCF 호출 오류 메시지 - System.ServiceModel.CommunicationException: Internal Server Error
11799정성태12/19/201813999.NET Framework: 804. WPF(또는 WinForm)에서 UWP UI 구성 요소 사용하는 방법 [3]파일 다운로드1
11798정성태12/19/201813238개발 환경 구성: 426. vcpkg - "Building vcpkg.exe failed. Please ensure you have installed Visual Studio with the Desktop C++ workload and the Windows SDK for Desktop C++"
... 61  62  63  64  65  66  67  68  69  70  71  72  [73]  74  75  ...