-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ef67fc
commit f5a6f42
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ServiceConfiguration serviceName="AzureCloudServiceCSharp" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="6" osVersion="*" schemaVersion="2015-04.2.6"> | ||
<Role name="WebRole1"> | ||
<Instances count="1" /> | ||
<ConfigurationSettings> | ||
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true" /> | ||
</ConfigurationSettings> | ||
</Role> | ||
<VirtualNetworkSite name="randomquotes"/> | ||
<AddressAssignments> | ||
<InstanceAddress roleName="WebRole1"> | ||
<Subnets> | ||
<Subnet name="default"/> | ||
</Subnets> | ||
</InstanceAddress> | ||
</ServiceConfiguration> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ServiceDefinition name="AzureCloudServiceCSharp" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2015-04.2.6"> | ||
<WebRole name="WebRole1" vmsize="Standard_A1"> | ||
<Sites> | ||
<Site name="Web"> | ||
<Bindings> | ||
<Binding name="Endpoint1" endpointName="Endpoint1" /> | ||
</Bindings> | ||
</Site> | ||
</Sites> | ||
<ConfigurationSettings> | ||
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" /> | ||
</ConfigurationSettings> | ||
<Endpoints> | ||
<InputEndpoint name="Endpoint1" protocol="http" port="80" /> | ||
</Endpoints> | ||
</WebRole> | ||
</ServiceDefinition> |