我想将ASP.NET Core Web应用程序部署到Azure。
在我的解决方案文件夹中,我有两个项目,两个引用Newtonsoft.Json
库。
当我尝试通过本地Git仓库进行部署时,它会在“正在运行部署脚本”中显示错误,从而生成以下活动日志。
日志的错误消息提示它试图在Newtonsoft.Json中查找不存在的bin文件夹。知道如何解决这个问题以及出了什么问题?
Command: "D:\home\site\deployments\tools\deploy.cmd"
Handling ASP.NET 5 Web Application deployment.
'dnx-clr-win-x86.1.0.0-rc1-update1' is already installed in D:\local\UserProfile\.dnx\runtimes\dnx-clr-win-x86.1.0.0-rc1-update1.
Adding D:\local\UserProfile\.dnx\runtimes\dnx-clr-win-x86.1.0.0-rc1-update1\bin to process PATH
Microsoft .NET Development Utility Clr-x86-1.0.0-rc1-16231
CACHE https://api.nuget.org/v3/index.json
Restoring packages for D:\home\site\repository\src\NyxProjectGenerator\project.json
Writing lock file D:\home\site\repository\src\NyxProjectGenerator\project.lock.json
Restore complete, 2895ms elapsed
Restoring packages for D:\home\site\repository\wrap\Newtonsoft.Json\project.json
Writing lock file D:\home\site\repository\wrap\Newtonsoft.Json\project.lock.json
Restore complete, 18ms elapsed
Restoring packages for D:\home\site\repository\wrap\Xamasoft.JsonClassGenerator\project.json
Writing lock file D:\home\site\repository\wrap\Xamasoft.JsonClassGenerator\project.lock.json
Restore complete, 22ms elapsed
Total time 3330ms
Feeds used:
https://api.nuget.org/v3-flatcontainer/
Microsoft .NET Development Utility Clr-x86-1.0.0-rc1-16231
Copying to output path D:\local\Temp\8d34698522cd8f8
...
Using Package dependency System.Runtime.Extensions 4.0.0
Source D:\local\UserProfile\.dnx\packages\System.Runtime.Extensions\4.0.0
Error: Could not find a part of the path 'D:\home\site\repository\wrap\Newtonsoft.Json\bin\Debug\net451'.
Target D:\local\Temp\8d34698522cd8f8\approot\packages\System.Runtime.Extensions\4.0.0
...
Using Project dependency Newtonsoft.Json 1.0.0 for .NETFramework,Version=v4.5.1
Packing nupkg from Project dependency Newtonsoft.Json
Source D:\home\site\repository\wrap\Newtonsoft.Json\project.json
Target D:\local\Temp\8d34698522cd8f8\approot\packages\Newtonsoft.Json\1.0.0
Building Newtonsoft.Json for .NETFramework,Version=v4.5.1
Using Project dependency Newtonsoft.Json 1.0.0
Source: D:\home\site\repository\wrap\Newtonsoft.Json\project.json
Using Assembly dependency fx/mscorlib 4.0.0
Source: D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.1\mscorlib.dll
Using Assembly dependency fx/System 4.0.0
Source: D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.1\System.dll
Using Assembly dependency fx/System.Core 4.0.0
Source: D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.1\System.Core.dll
Using Assembly dependency fx/Microsoft.CSharp 4.0.0
Source: D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.1\Microsoft.CSharp.dll
An error has occurred during web site deployment.
Error: Could not find a part of the path 'D:\home\site\repository\wrap\Newtonsoft.Json\bin\Debug\net451'.\r\nc:\Program Files (x86)\SiteExtensions\Kudu\52.50302.2113\bin\scripts\starter.cmd "D:\home\site\deployments\tools\deploy.cmd"
答案 0 :(得分:0)
此错误消息,其中包含" wrap"文件夹,向我建议你直接在Newtonsoft Assembly中添加了一个ref。
错误:无法找到路径的一部分' D:\ home \ site \ repository \ wrap \ Newtonsoft.Json \ bin \ Debug \ net451'
相反,您应该通过project.json文件中的NuGet包引用Newtonsoft
"dependencies": {
"Newtonsoft.Json": "8.0.2"
},