出於某種原因,我必須使用構建代理「Hosted Linux Preview」,因此我只能使用「dotnet restore」而不是「nuget restore」,現在我們的團隊已經在VSTS上構建了內部包服務器。如何使用VSTS構建代理「託管Linux預覽」來使用VSTS內部包服務器?
在「nuget restore」步驟中,可以選擇連接到服務器,但「dotnet restore」不會。
我嘗試了以下方法,但失敗了。
嘗試1添加--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添加--configfile ../../.nuget/Nuget.Config
,我得到了同樣的錯誤如上
看來,構建代理沒有授權從VSTS中檢索index.json文件,我該如何繼續?
@ starain-MSFT :)是的 – Elaine