我刚刚将一个正在运行的RC2 Web应用程序转换为RTM,我在IIS上发布了一些问题。
我找到的所有样本都基于NetCoreApp1.0应用程序。由于某些要求,我们仅限于" net46"。
这是project.json
{
"version": "1.0.0-*",
"dependencies": {
"Domain": "1.0.0-*",
"Microsoft.AspNetCore.Authentication": "1.0.0",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
"Microsoft.AspNetCore.Authentication.Facebook": "1.0.0",
"Microsoft.AspNetCore.DataProtection.SystemWeb": "1.0.0",
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
"Microsoft.AspNetCore.Http.Extensions": "1.0.0",
"Microsoft.AspNetCore.Localization": "1.0.0",
"Microsoft.AspNetCore.Mvc": "1.0.0",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.Extensions.Logging.Debug": "1.0.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
"PublicLib": "1.0.0-*",
"PublicLib.Imaging": "1.0.0-*",
"PublicLib.Interfaces": "1.0.0-*",
"Storage": "1.0.0-*"
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
"version": "1.0.0-preview2-final"
}
},
"frameworks": {
"net46": {
}
},
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
"publishOptions": {
"include": [
"wwwroot",
"web.config",
"Views",
"appsettings.json",
"database.json",
"PublicWeb.nuspec"
]
},
"packOptions": {
},
"scripts": {
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
}
}
这是我得到的错误
Errors in C:\Development\Path\To\Web\Application\project.json
Package Microsoft.DotNet.ProjectModel 1.0.0-rc3-003121 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). Package Microsoft.DotNet.ProjectModel 1.0.0-rc3-003121 supports:
- net451 (.NETFramework,Version=v4.5.1)
- netstandard1.6 (.NETStandard,Version=v1.6)
One or more packages are incompatible with .NETCoreApp,Version=v1.0.
如果我更改"工具"部分如下,
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
"version": "1.0.0-preview2-final",
"imports": "net451"
}
},
我设法恢复解决方案,但当我尝试使用dotnet publish .\Path\To\Web\Application\ -o .\tmp\public\
发布解决方案时,我得到以下输出
Publishing PublicWeb for .NETFramework,Version=v4.6/win7-x64
Project Domain (.NETFramework,Version=v4.6) was previously compiled. Skipping compilation.
Project PublicLib.Interfaces (.NETFramework,Version=v4.6) was previously compiled. Skipping compilation.
Project PublicLib (.NETFramework,Version=v4.6) was previously compiled. Skipping compilation.
Project PublicLib.Imaging (.NETFramework,Version=v4.6) was previously compiled. Skipping compilation.
Project Storage (.NETFramework,Version=v4.6) was previously compiled. Skipping compilation.
Project PublicWeb (.NETFramework,Version=v4.6) will be compiled because inputs were modified
Compiling PublicWeb for .NETFramework,Version=v4.6
Compilation succeeded.
0 Warning(s)
0 Error(s)
Time elapsed 00:00:01.8045183
Configuring the following project for use with IIS: '.\tmp\public\'
Could not load file or assembly 'Microsoft.DotNet.ProjectModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.DotNet.ProjectModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
File name: 'Microsoft.DotNet.ProjectModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'
at Microsoft.AspNetCore.Server.IISIntegration.Tools.PublishIISCommand.Run()
at Microsoft.AspNetCore.Server.IISIntegration.Tools.Program.<>c__DisplayClass0_0.<Main>b__0()
at Microsoft.Extensions.CommandLineUtils.CommandLineApplication.Execute(String[] args)
at Microsoft.AspNetCore.Server.IISIntegration.Tools.Program.Main(String[] args)
publish: Published to .\tmp\public\
Published 1/1 projects successfully
如果事件显示为Published 1/1 projects successfully
,则.\tmp\public\web.config
包含以下行。
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
虽然它曾经包含
<aspNetCore processPath=".\PublicWeb.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
第二个是部署服务器上IIS的工作配置。
有关如何解决这个问题的任何建议吗?
由于
答案 0 :(得分:7)
这是帮助我的。
在CMD中输入dotnet --version,如果它显示你使用的是版本预览1,那么你需要做的就是清理缓存并使用preview2强制执行。
首先确保你的计算机中有预览2,在windows上它应该在C:\ Program Files \ dotnet \ sdk下如果你在dir中有1.0.0-preview2-003121,那你就好了,否则下载最新的sdk,并确保你安装了最新的.Net核心,并删除系统中的dnx文件夹,因为它不再相关(改为dotnet)。
从dotnet sdk目录中删除preview1 sdk版本。
在项目文件夹中编辑你的global.json文件应该是这样的。
{
"projects": [ "src", "test" ],
"sdk": {
"version": "1.0.0-preview2-003121"
}
}
现在重启你的电脑以确保重启所有服务和进程, 运行dotnet还原,现在它可以工作,它将首先在缓存上运行一些更新,但不要担心需要大约一分钟或2分钟取决于您的操作系统规范,然后它将执行还原。
答案 1 :(得分:3)
我遇到了相同的问题,并且可以通过将IISIntegration.Tools
回滚到1.0.0-preview1-final
来重新发布
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
"version": "1.0.0-preview1-final",
"imports": "portable-net45+win8+dnxcore50"
}
答案 2 :(得分:1)
我可以通过安装.NET Core SDK网站上的dot.net来解决此问题,请在此处查看此处的讨论以获取更多详细信息。
答案 3 :(得分:0)
在我修复之前,我收到了错误:
Could not load file or assembly 'Microsoft.DotNet.ProjectModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
我发现我的机器上有一个Nu Studio的Visual Studio版本和NuGet的命令行版本。我删除了较旧的命令行版本。
我通过放入命令行并运行显示版本2.8的NuGet
找到命令行版本。运行Visual Studio扩展管理器时,报告的版本为3.5。
我卸载了命令行NuGet版本。
我还清除了NuGet缓存:
nuget locals -all clear
我不完全确定它是否有两个不同的版本,或者它是否正在清除缓存,但在完成这两个版本后,我不再收到ProjectModel错误。
答案 4 :(得分:0)
从这里下载NuGet.exe https://dist.nuget.org/index.html
打开命令提示符并转到目录并执行以下命令 例如:C:/ Users / Username / Downloads&gt; nuget.exe locals - 全部
这解决了我的问题System.IO.FileNotFoundException:无法加载文件或程序集'Microsoft.DotNet.ProjectModel,Version = 1.0.0.0,Culture = neutral,PublicKeyToken = adb9793829ddae60'。系统找不到指定的文件。