.net core rc1에서 rc2로 마이그레이션할 때 이 비호환성 문제가 발생하는 이유 (Why I'm getting this incompatibilities issues migrating from .net core rc1 to rc2)


문제 설명

.net core rc1에서 rc2로 마이그레이션할 때 이 비호환성 문제가 발생하는 이유 (Why I'm getting this incompatibilities issues migrating from .net core rc1 to rc2)

v1.0으로 최종 마이그레이션하기 전에 rc1에서 rc2로 중간 단계를 이동하려고 합니다.

지금 이러한 비호환성 문제가 많이 발생합니다.

종속성 System.Diagnostics.Process 4.1.0‑rc2‑24027은 프레임워크 .NETFramework,Version=v4.5.2를 지원하지 않습니다. 심각도 코드 설명 프로젝트 파일 줄 억제 상태

오류 NU1002 종속성 System.IO.FileSystem.Watcher 4.0.0‑rc2‑24027은 프레임워크 .NETFramework,Version=v4.5.2를 지원하지 않습니다.

.NET Framework 4.5.2 및 .net Core를 대상으로 하려고 합니다.

이 문제를 어떻게 해결할 수 있습니까?


참조 솔루션

방법 1:

The package System.Diagnostics.Process only supports .Net Standard 1.3, which corresponds to .Net Framework 4.6. So, to use that package, you can't target .Net 4.5.2, but have to target .Net 4.6 or higher.

The same applies to System.IO.FileSystem.Watcher.

(by StackOverflowersvick)

참조 문서

  1. Why I'm getting this incompatibilities issues migrating from .net core rc1 to rc2 (CC BY‑SA 2.5/3.0/4.0)

#.net-core #C# #ASP.NET






관련 질문

.net core rc1에서 rc2로 마이그레이션할 때 이 비호환성 문제가 발생하는 이유 (Why I'm getting this incompatibilities issues migrating from .net core rc1 to rc2)

dotnet core-Logging 클래스 라이브러리 (dotnet core-Logging in class library)

Cors .Net Core 활성화 (Enable Cors .Net Core)

Enum<T>.Parse를 사용하면 정수인 모든 문자열을 구문 분석할 수 있습니다. .net 코어의 버그입니까? (Enum<T>.Parse allows parsing any string that is an integer. Is it a bug in .net core?)

.net Core: C# 코드에서 매개 변수를 전달하고 Azure 데이터 팩터리 파이프라인을 실행하는 방법은 무엇입니까? (.net Core : How to pass parameters and run Azure data factory pipeline from C# Code?)

Dotnet Core 3.1, EF1001: 내부 ef 코어 API 사용 (Dotnet Core 3.1, EF1001: internal ef core api usage)

.NET Core 작업자 서비스의 구성을 기반으로 호스팅 서비스 등록 (Register Hosted Services based on Configuration in .NET Core Worker services)

pem 및 key를 사용하여 Azure 기능에서 게시 시도 (Trying to do post from an Azure function with pem and key)

.NET Core에서 실제 통합 테스트를 작성하는 방법은 무엇입니까? (How to write real integration test in .NET Core?)

HTTP 오류 500.30 - ANCM 진행 중인 시작 실패 Asp.net-Core 3.1 (HTTP Error 500.30 - ANCM In-Process Start Failure Asp.net-Core 3.1)

.Net Core에서 NUnit 3와 Allure 통합 (Allure integration with NUnit 3 in .Net Core)

HttpClient 재시도 논리가 예상대로 작동하지 않음(.Net Core 3.1) (HttpClient retry logic not working as expected (.Net Core 3.1))







코멘트