尝试生成构建时,我收到以下错误:
1 error(s), 0 warning(s)
$/source control my solution....../Web.sln - 1 error(s), 0 warning(s), View Log File
D:\Builds\.....zWeb\.nuget\NuGet.targets (93): The underlying connection was closed: An unexpected error occurred on a send.
在NuGet.config文件中:
我尝试过以下方法:
我做错了什么?如何构建它?
如果相关,请访问我的nuget.targets文件。
答案 0 :(得分:1)
您好试着放置文件nuget.config 在你的解决方案的根目录
X:\ SolutionFolder \ nuget.config X:\ SolutionFolder \ Web.sln
然后更改nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositoryPath" value="packages" />
</config>
<packageSources>
<add key="Your NuGet" value="\\YourServer\Nuget Gallery" />
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
</packageSources>
</configuration>
repositoryPath与nuget.config文件本地化相关 创建此网络共享并确保您的使用可以访问它
<add key="Your NuGet" value="\\YourServer\Nuget Gallery" />
您在本地和构建服务器上使用的tfs版本和Visual Studio版本是什么?