• NuGet微软官方中国国内镜像


    为解决国内访问NuGet服务器速度不稳定的问题 ,这里推荐使用NuGet微软官方中国国内镜像

    地址:https://nuget.cdn.azure.cn/v3/index.json

    添加NuGet源的方式

    菜单: 工具 -> NuGet包管理器 -> 程序包管理器设置

     

    NuGet镜像上线试运行

    为解决国内访问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.exten
  • 相关阅读:
    VS中使用svn注意事项
    后端调用WebApi
    抽象工厂模式
    观察者模式
    建造者模式
    外观模式
    模板方法
    原型模式
    工厂方法
    代理模式
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/16328650.html
Copyright © 2020-2023  润新知