nuget.config和gui设置之间是否有连接?

时间:2015-09-18 03:44:54

标签: c# visual-studio visual-studio-2012 nuget nuget-server

尝试生成构建时,我收到以下错误:

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.

我在这里配置存储库URL: enter image description here

在NuGet.config文件中:

enter image description here

我尝试过以下方法:

  1. 尝试了多个网络连接(以排除防火墙问题)
  2. 重新启动VS并重新安装NuGet和所有软件包
  3. 清理,重建
  4. 更改了downloadnuget setting
  5. 我做错了什么?如何构建它?

    如果相关,请访问我的nuget.targets文件。

1 个答案:

答案 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版本是什么?