Context
I have an Azure project in my solution for my web service. I have 3 Visual Studio configurations, Debug, Release1 and Release2. I would like to configure both Release1 and Release2 for cloud deployment but with slightly different configurations (for example Release1 is https, but Release2 is pure http.)
I know I can create multiple deployment profiles (.azurePubxml) but as far as I see even I could have 100s of them, I only can refer only 2 service configuration from them: Local or Cloud
<AzureServiceConfiguration>Cloud</AzureServiceConfiguration>
Question:
How can I have 3 different service configurations (.cscfg) for my 3 VS configurartions and 3 deployment profiles?