かずきのBlog@hatena

すきな言語は C# + XAML の組み合わせ。Azure Functions も好き。最近は Go 言語勉強中。日本マイクロソフトで働いていますが、ここに書いていることは個人的なメモなので会社の公式見解ではありません。

NuGet v3.0で認証プロキシを突破する方法

stackoverflow.com

ここにある通りnuget.exeをゲットしてきて以下のコマンドを打ち込むことで解決できました。

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

Visual Studio 2013までは、認証用のダイアログが出てたのになぁ。