首页 > 其他 > 详细

NuGet镜像上线试运行

时间:2016-12-18 21:03:17      阅读:1341      评论:0      收藏:0      [点我收藏+]

为解决国内访问NuGet服务器速度不稳定的问题,我们用阿里云服务器搭建了一个NuGet镜像,目前已上线试运行。

使用NuGet镜像源的方法如下:

1)NuGet镜像源地址:https://nuget.cnblogs.com/v3/index.json

2)在NuGet.Config中添加这个镜像源:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.cnblogs.com" value="https://nuget.cnblogs.com/v3/index.json" protocolVersion="3" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
  </packageSources>
  <packageRestore>
    <add key="enabled" value="True" />
    <add key="automatic" value="True" />
  </packageRestore>
  <bindingRedirects>
    <add key="skip" value="False" />
  </bindingRedirects>
</configuration>

注:NuGet.Config 在 Windows 中路径是 %appdata%\NuGet\NuGet.Config ,在 Mac 与 Linux 中的路径是 ~/.nuget/NuGet/NuGet.Config ,如果没有 NuGet.Config 文件,可以运行 dotnet restore 命令生成。

或者在Visual Studio中的添加方法:

技术分享

由于目前带宽有限,如果出现下面的问题,说明当前带宽跑满了,您可以稍后再试。

The download of ‘https://nuget.cnblogs.com/v3-flatcontainer/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg‘ timed out because no data was received for 60000ms.

NuGet镜像上线试运行

原文:http://www.cnblogs.com/cmt/p/nuget-mirror.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!