gpt4 book ai didi

azure - Azure Web 应用程序部署期间的 "Error: could not find a part of the path"

转载 作者:行者123 更新时间:2023-12-02 07:30:02 25 4
gpt4 key购买 nike

我想将 ASP.NET Core Web 应用部署到 Azure。

在我的解决方案文件夹中,我有 2 个项目,两个项目都引用 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"

最佳答案

此错误消息(其中包括“wrap”文件夹)表明您已直接向 Newtonsoft 程序集添加了引用。

Error: Could not find a part of the path 'D:\home\site\repository\wrap\Newtonsoft.Json\bin\Debug\net451'

相反,您应该通过 project.json 文件中的 NuGet 包引用来引用 Newtonsoft

"dependencies": {
"Newtonsoft.Json": "8.0.2"
},

关于azure - Azure Web 应用程序部署期间的 "Error: could not find a part of the path",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35847851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com