No executable file found the matching dotnet-projectmodel-server command, VS2015

I am trying to create a new external application with the dotnet core, but I get an error as shown below to open the project.

i followed this answer but didn't work for me.

here is the error i get

dotnet --info

project

getting this error while trying to recover:

error MSB4025: project file could not be loaded. Data at the root level is invalid. Line 1, position 1.

running dotnet repair command gives below error:

error MSB4019: The imported project "C: \ Program Files \ dotnet \ sdk \ 1.0.1 \ Microsoft \ VisualStudio \ v14.0 \ DotNet \ Microsoft.DotNet.Props" was not found. Verify that the path in the declaration is correct and that the file exists on disk.

+4
2

. , , , .

global.json , .xproj .

{
    "projects": [ "src", "test" ],
    "sdk": {
        "version": "1.0.0-preview2-003121"
}

, .

+3

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


All Articles