NuGet 的命令列代理設定
NuGet 從早期版本就提供了代理設定功能,但缺乏清晰的命令列範例阻礙了它的使用。本文解決了此問題,並示範如何透過命令行為 NuGet 設定代理設定。
設定指令
要設定NuGet 代理設定,請執行下列指令(取代
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>
這些命令將代理設定新增至位於使用者漫遊資料資料夾 (%appdata%NuGet) 的 NuGet 設定檔 (NuGet.config)。產生的設定檔可能類似以下內容:
<config> <add key="http_proxy" value="http://<my.proxy.address>:<port>" /> <add key="http_proxy.user" value="<mydomain>\<myUserName>" /> <add key="http_proxy.password" value="base64encodedHopefullyEncryptedPassword" /> </config>
註解
以上是如何使用命令列設定 NuGet 代理設定?的詳細內容。更多資訊請關注PHP中文網其他相關文章!