Reputation: 51
I have a project in Xamarin.iOS and I want to build it for different clients under different app ids with unique icons for each client. What is the best way to do this ?
Upvotes: 1
Views: 66
Reputation: 43553
There are many (many...) ways you could do this.
An easy one would be to create several application projects (.csproj) under the same solution (.sln).
Each project would have it's own configuration, defines, targets, even files (like icons). All sources would be links (i.e. file linking) from the master project.
That would allow you to customize/brand, build and publish each application separately, while maintaining a single code base across all of them (from a single solution).
Upvotes: 2