' NETCore.App',版本' 1.0.0-rc2-3002702'找不到

时间:2016-07-14 15:53:42

标签: asp.net

我在Visual Studio中添加了默认的ASP.NET Core项目。我没有做任何发布项目并将其部署在Windows Server 2012 RC2上。 我已经安装了DotNetCore

我配置了IIS,但是当我运行项目时,我会收到错误。

The specified framework 'Microsoft.NETCore.App', version '1.0.0-rc2-3002702' was not found.

  - Check application dependencies and target a framework version installed     at:
      C:\Program Files\dotnet\shared\Microsoft.NETCore.App

  - The following versions are installed:       1.0.0
  - Alternatively, install the framework version '1.0.0-rc2-3002702'.

请帮忙

2 个答案:

答案 0 :(得分:3)

您的依赖项和project.json文件的工具部分中可能有不同版本的工具。例如,:

  "tools": {
"Microsoft.EntityFrameworkCore.Tools": {
  "version": "1.0.0-preview2-final",
  "imports": ...
  ]
}

  "dependencies": {
"Microsoft.EntityFrameworkCore.Tools": {
  "type": "build",
  "version": "1.0.0-preview1-final",
  ...
}

会导致您看到的错误,因为版本不同意。

答案 1 :(得分:2)

我有同样的问题,我只是在runtimeconfig.json中将1.0.1更改为1.0.0

enter image description here