当前位置:首页 > CN2资讯 > 正文内容

NuGet配置代理nuget pack

54分钟前CN2资讯

https://stackoverflow.com/questions/9232160/nuget-behind-proxy

nuget.exe config -set http_proxy=http://my.proxy.address:port nuget.exe config -set http_proxy.user=mydomain\myUserName nuget.exe config -set http_proxy.password=mySuperSecretPassword

This put the following in my NuGet.config located at %appdata%\NuGet (which maps to C:\Users\myUserName\AppData\Roaming on my Windows 7 machine):

win10的系统,配置文件在C:\Users\clu\AppData\Roaming\NuGet\NuGet.Config

<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> </packageSources> <config> <add key="http.proxy" value="sasygsha01prx11_p.asnet.accorservices.net:8080" /> </config> </configuration> 注意事项:

这个http_proxy的配置,也有可能在系统的环境变量中进行过配置。比如git会依赖

    你可能想看:

    扫描二维码推送至手机访问。

    版权声明:本文由皇冠云发布,如需转载请注明出处。

    本文链接:https://www.idchg.com/info/32113.html

    分享给朋友:

    “NuGet配置代理nuget pack” 的相关文章