我在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'.
请帮忙
答案 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)