2

我想将 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"
4

1 回答 1

0

此错误消息包含“wrap”文件夹,向我表明您已直接向 Newtonsoft 程序集添加了引用。

错误:找不到路径“D:\home\site\repository\wrap\Newtonsoft.Json\bin\Debug\net451”的一部分

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

"dependencies": {
    "Newtonsoft.Json": "8.0.2"
},
于 2016-06-01T12:39:26.993 回答