저는 Visual Studio Mac을 잠시 사용 해왔고 방금 출시 된 버전으로 업데이트했습니다. 내가 구축하고 쉘에서 해당 프로젝트를 실행할 수Visual Studio Mac이 dotnet core 2와 호환되지 않습니다.
dotnet2 davec$ dotnet --version
2.0.0-preview1-005977
dotnet2 davec$ dotnet new webapi
The template "ASP.NET Core Web API" was created successfully.
This template contains technologies from parties other than Microsoft, see https://aka.ms/template-3pn for details.
Processing post-creation actions...
Running 'dotnet restore' on dotnet2/dotnet2.csproj...
Restore succeeded.
: 나는 또한 새로운 웹 API 프로젝트를 생성 할 수있는 쉘 프롬프트에서 .NET 코어 2.0 미리보기 1. 다운로드 및 설치했습니다. 나는 맥의 IDE의 시도를위한 비주얼 스튜디오에서 열어 실패 할 때 복원 :
Errors in dotnet2/dotnet2.csproj
Unable to resolve 'Microsoft.NETCore.App (>= 2.0.0)' for '.NETCoreApp,Version=v2.0'.
Unable to resolve 'Microsoft.NETCore.App (>= 2.0.0)' for '.NETCoreApp,Version=v2.0 (win)'.
Unable to resolve 'Microsoft.NETCore.App (>= 2.0.0)' for '.NETCoreApp,Version=v2.0 (win-x64)'.
Unable to resolve 'Microsoft.NETCore.App (>= 2.0.0)' for '.NETCoreApp,Version=v2.0 (win-x86)'.
NuGet Config files used:
~/.config/NuGet/NuGet.Config
Feeds used:
https://api.nuget.org/v3/index.json
Restore failed for 'Microsoft.NETCore.App (>= 2.0.0)'.
Restore failed.
https://gist.github.com/mrward/70b8132003ef77d893111ecbea3e2225#net-core-app-20-project – jmoerdyk
감사합니다. RuntimeFrameworkVersion이 문제를 해결했습니다. –