Reputation: 6891
I try to implement App Center build for my xamarin.forms Project. Difficulty I have is that my source Code is hosted on Visual Studio Online(Azure Devops as new Name) and github. So like below Project A and Project B are open-source Projects hosted in Github and referencing on Main Project
With that stucture if I create an automatic build on my Project, build is failing. Is there a way to go around this without creating nuget package for Project A and Project B?
Upvotes: 0
Views: 40
Reputation: 33993
These kind of "advanced" scenario's are not possible with App Center. App Center is targeting simple cases and beginning developers who just want to hook up their repo and build.
If you want to do this you need to create a NuGet package as you already mentioned yourself or move the whole pipeline into Azure DevOps where you can do more advanced stuff.
Upvotes: 2