У меня работает дотнет ядро 2.2.Я хотел бы установить прокси, поскольку я получаю это при запуске dotnet restore.
NuGet.targets(114,5): error : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond [C:\Projects\FarrisCosting\Projects.csproj]
Для другого поста эта команда возможна.
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
Используя соглашения ядра dotnet, я ожидал бы, что будет доступно следующее
dotnet nuget config -set, но это, по-видимому, недоступно.Я думаю, мне нужно запустить Nuget напрямую из SDK без инкапсуляции?