Created
August 27, 2012 22:43
-
-
Save sandrinodimattia/3493040 to your computer and use it in GitHub Desktop.
ServiceConfiguration.cscfg - Instance Count
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <ServiceConfiguration serviceName="MultipleInstancesDemo" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="1" osVersion="*" schemaVersion="2012-05.1.7"> | |
| <Role name="MyWebRole"> | |
| <Instances count="3" /> | |
| <ConfigurationSettings> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true" /> | |
| <Setting name="SomeSetting" value="abcdefg" /> | |
| </ConfigurationSettings> | |
| </Role> | |
| </ServiceConfiguration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment