asp.net-core – Visual Studio 2017 RC安装会中断Visual Studio 2015 ASP.NET核心项目

前端之家收集整理的这篇文章主要介绍了asp.net-core – Visual Studio 2017 RC安装会中断Visual Studio 2015 ASP.NET核心项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
安装Visual Studio 2017 Professional RC后,我无法在Visual Studio 2015 Professional中构建我的ASP.NET Core。我从来没有在VS2017打开这个项目

我得到

The following error occured attempting to run the project model server process (1.0.0-preview3-004056).

Unable to start the process. No executable found matching command dotnet-projectmodel-server

然后我在Visual Studio 2015中创建了一个全新的ASP.NET Core项目,我在加载我的项目时得到完全相同的消息。

此外,当我想要建立的项目,我得到

MSB1009: Project File does not exist.

同样的问题不会发生在ASP.NET 5项目,因此它只限于ASP.NET Core

解决方法

@Claudio Nunes和@MegaTron有正确的答案。阅读他的答案后,我意识到我的.NET核心解决方案没有一个global.json文件。我添加了一个新的解决方文件夹并添加了一个global.json文件。因为我的项目没有嵌套在子文件夹中,我只需要从projects数组中删除“src”和“test”:
{
  "projects": [],"sdk": {
    "version": "1.0.0-preview2-003131"
  }
}

该项目现在在VS 2015正确打开与VS 2017 RC安装。

原文链接:https://www.f2er.com/aspnet/254237.html

猜你在找的asp.Net相关文章