Hatim Nagarwala
Hatim Nagarwala

Reputation: 110

Xamarin.ios on premise Build Failes on VSTS with return code 1

We are trying to create a build definition for xamarin.ios and we have a on premise build agent, we have syncfusion references included in the project, getting a error while the build is running. here is the issue which we get

Upvotes: 1

Views: 50

Answers (1)

starian chen-MSFT
starian chen-MSFT

Reputation: 33698

One way is that you can add nuget.config file to source control and specify it for NuGet restore step/task (Path to NuGet.config)

Another way is that, you can add Command Line step/task to add sources (Tool: [nuget.exe path (include nuget.exe to source control and map to build agent)], Arguments: sources add [name] -Source [feed address] -username [user name] -password [password] -StorePasswordInClearText

Upvotes: 2

Related Questions