Reputation: 110
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.
Upvotes: 1
Views: 50
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