由于某种原因,我必须使用构建代理“Hosted Linux Preview”,所以我只能使用“dotnet restore”而不是“nuget restore”,而现在我们的团队有基于 VSTS 构建的内部包服务器。
在“nuget restore”步骤中,有连接到服务器的选项,但“dotnet restore”没有。
我尝试了以下方法,但失败了。
尝试 1 add --source https://****.pkgs.visualstudio.com/_packaging/****/nuget/v3/index.json
,我在日志中收到错误:error : Unable to load the service index for source https://****.pkgs.visualstudio.com/_packaging/****/nuget/v3/index.json. [/opt/vsts/work/1/s/src/References.Mapper/References.Mapper.csproj]
尝试 2 add --configfile ../../.nuget/Nuget.Config
,我得到与上面相同的错误
似乎构建代理没有从 VSTS 检索 index.json 文件的授权,我该如何继续?