The default OS family for deployment

We have a web application ported to Windows Azure. It is deployed from within Visual Studio 2010 with the latest Azure SDK installed. Everything works fine, except that we have some dependencies on Windows Server 2008 R2, and I need to manually change the OS family through my web management portal after each deployment (Cloud Services → Configure →).

I suppose there should be an option to make this choice by default, but I did not find anything in the settings of the azure project inside the visual studio. Does anyone know how to avoid this manually?

+5
source share
1 answer

Visual Studio, osFamily="2" ServiceConfiguration ServiceConfiguration.Cloud.cscfg.

(*), , . ( : , osVersion, osFamiliy)

Windows Azure, : http://msdn.microsoft.com/en-us/library/windowsazure/gg456324.aspx

Windows Azure ( .cscfg): http://msdn.microsoft.com/en-us/library/windowsazure/ee758710.aspx

+13

All Articles