Created
February 19, 2013 15:24
-
-
Save MikeLarned/4986825 to your computer and use it in GitHub Desktop.
ServiceDefinition.csdef
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"?> | |
| <ServiceDefinition name="MyApp.Azure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2012-10.1.8"> | |
| <WebRole name="MyApp.Web" vmsize="Small"> | |
| <Sites> | |
| <Site name="Web" physicalDirectory="../../Publish/MyApp.Web/"> | |
| <VirtualApplication name="api" physicalDirectory="../../Publish/MyApp.Api/" /> | |
| <Bindings> | |
| <Binding name="Endpoint1" endpointName="Endpoint1" /> | |
| </Bindings> | |
| </Site> | |
| </Sites> | |
| <Endpoints> | |
| <InputEndpoint name="Endpoint1" protocol="http" port="80" /> | |
| </Endpoints> | |
| <Imports> | |
| <Import moduleName="Diagnostics" /> | |
| </Imports> | |
| </WebRole> | |
| </ServiceDefinition> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment