The following error occurred while trying to start the project model server process (1.0.0-rc4-004771)

A compilation error in Visual Studio 2015 when creating a new .NET Core 1 web application if you have already installed Visual Studio 2017 RC.

enter image description here

enter image description here

+4
source share
2 answers

I found a link that very clearly fixes this problem, and here is the link. https://chamindac.blogspot.com/2017/02/resolve-msb4019-imported-project.html

+6
source

. , .NET Core ( Visual Studio 2017) Visual Studio 2015 , .

global.json . "sdk" "version" , . , % ProgramFiles%\dotnet\sdk.

, 1.0.0-preview.2-1-003180, global.json :

{
  "projects": [ "src" ],
  "sdk": { "version": "1.0.0-preview2-1-003180" }
}
+11

Source: https://habr.com/ru/post/1670703/


All Articles