├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config └── NuGet.targets ├── App Services ├── AppServicesMediaTranscode │ ├── App.config │ ├── AppServicesMediaTranscode.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── AppServicesSvcBusQ │ ├── App.config │ ├── AppServicesSvcBusQ.csproj │ ├── Performance │ │ └── Microsoft.ServiceBus.MessagingPerformanceCounters.man │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ ├── program.cs │ └── sw-file-icon.png └── AppServicesSvcBusTopic │ ├── App.config │ ├── AppServicesSvcBusTopic.csproj │ ├── Performance │ └── Microsoft.ServiceBus.MessagingPerformanceCounters.man │ ├── _Definitions │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ ├── program.cs │ └── sw-file-icon.png ├── AzureQuickStartsProjects.sln ├── CONTRIBUTING.md ├── Compute ├── ComputeWebJobsSDKBlob │ ├── ComputeWebJobsSDKBlob.csproj │ ├── Functions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── packages.config │ └── sw-file-icon.png ├── ComputeWebJobsSDKQueue │ ├── ComputeWebJobsSDKQueue.csproj │ ├── Functions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── packages.config │ └── sw-file-icon.png ├── ComputeWebJobsSDKSvcBusQ │ ├── ComputeWebJobsSDKSvcBusQ.csproj │ ├── Functions.cs │ ├── Performance │ │ └── Microsoft.ServiceBus.MessagingPerformanceCounters.man │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── packages.config │ └── sw-file-icon.png ├── ComputeWebJobsSDKTable │ ├── ComputeWebJobsSDKTable.csproj │ ├── Functions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── app.config │ ├── packages.config │ └── sw-file-icon.png ├── DeployManageCloudServices │ ├── App.config │ ├── CertificateAuthenticationHelper.cs │ ├── DeployManageCloudServices.csproj │ ├── ManagementController.cs │ ├── ManagementControllerParameters.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublishSettingsSubscriptionItem.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DeployManageVirtualMachines │ ├── App.config │ ├── CertificateAuthenticationHelper.cs │ ├── DeployManageVirtualMachines.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublishSettingsSubscriptionItem.cs │ ├── VMManagementController.cs │ ├── VMManagementControllerParameters.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png └── DeployManageWebSites │ ├── App.config │ ├── CertificateAuthenticationHelper.cs │ ├── DeployManageWebSites.csproj │ ├── ManagementController.cs │ ├── ManagementControllerParameters.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── PublishDemoHelper.cs │ ├── PublishSettingsSubscriptionItem.cs │ ├── _Definitions │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── Data Services ├── DataBlobStorage │ ├── App.config │ ├── DataBlobStorage.csproj │ ├── HelloWorld.png │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DataCacheService │ ├── App.config │ ├── DataCacheService.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DataDocumentDB │ ├── App.config │ ├── DataDocumentDB.csproj │ ├── Models │ │ ├── Child.cs │ │ ├── Family.cs │ │ ├── Parent.cs │ │ └── Pet.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DataFileStorage │ ├── App.config │ ├── DataFileStorage.csproj │ ├── HelloWorld.png │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DataSQLEF │ ├── App.config │ ├── DataModel │ │ ├── Enums.cs │ │ ├── Order.cs │ │ ├── OrderDbContext.cs │ │ └── OrderItem.cs │ ├── DataSQLEF.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DataStorageQueue │ ├── App.config │ ├── DataStorageQueue.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── DataTableStorage │ ├── App.config │ ├── DataTableStorage.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── model │ │ └── CustomerEntity.cs │ ├── packages.config │ └── sw-file-icon.png ├── DeployManageAzureStorage │ ├── App.config │ ├── CertificateAuthenticationHelper.cs │ ├── DeployManageAzureStorage.csproj │ ├── ManagementController.cs │ ├── ManagementControllerParameters.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublishSettingsSubscriptionItem.cs │ ├── _Definitions │ │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png └── DeployManageSQLDB │ ├── App.config │ ├── CertificateAuthenticationHelper.cs │ ├── CredentialsHelper.cs │ ├── DeployManageSQLDB.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── PublishSettingsSubscriptionItem.cs │ ├── SqlManagementController.cs │ ├── SqlManagementControllerParameters.cs │ ├── _Definitions │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── LICENSE ├── Network └── DeployManageVirtualNetwork │ ├── App.config │ ├── CertificateAuthenticationHelper.cs │ ├── DeployManageVirtualNetwork.csproj │ ├── ManagementController.cs │ ├── ManagementControllerParameters.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── PublishSettingsSubscriptionItem.cs │ ├── _Definitions │ └── _project.vstemplate.xml │ ├── _preprocess.xml │ ├── packages.config │ └── sw-file-icon.png ├── README.md ├── SECURITY.md └── Shared └── Common ├── AzureQuickStarts.Common.csproj ├── CertificateAuthenticationHelper.cs ├── Properties └── AssemblyInfo.cs ├── PublishSettingsSubscriptionItem.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/App.config -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/AppServicesMediaTranscode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/AppServicesMediaTranscode.csproj -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/Program.cs -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/_preprocess.xml -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/packages.config -------------------------------------------------------------------------------- /App Services/AppServicesMediaTranscode/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesMediaTranscode/sw-file-icon.png -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/App.config -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/AppServicesSvcBusQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/AppServicesSvcBusQ.csproj -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/Performance/Microsoft.ServiceBus.MessagingPerformanceCounters.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/Performance/Microsoft.ServiceBus.MessagingPerformanceCounters.man -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/_preprocess.xml -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/packages.config -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/program.cs -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusQ/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusQ/sw-file-icon.png -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/App.config -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/AppServicesSvcBusTopic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/AppServicesSvcBusTopic.csproj -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/Performance/Microsoft.ServiceBus.MessagingPerformanceCounters.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/Performance/Microsoft.ServiceBus.MessagingPerformanceCounters.man -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/_preprocess.xml -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/packages.config -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/program.cs -------------------------------------------------------------------------------- /App Services/AppServicesSvcBusTopic/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/App Services/AppServicesSvcBusTopic/sw-file-icon.png -------------------------------------------------------------------------------- /AzureQuickStartsProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/AzureQuickStartsProjects.sln -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/ComputeWebJobsSDKBlob.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/ComputeWebJobsSDKBlob.csproj -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/Functions.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/Program.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/_preprocess.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/app.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/packages.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKBlob/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKBlob/sw-file-icon.png -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/ComputeWebJobsSDKQueue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/ComputeWebJobsSDKQueue.csproj -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/Functions.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/Program.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/_preprocess.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/app.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/packages.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKQueue/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKQueue/sw-file-icon.png -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/ComputeWebJobsSDKSvcBusQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/ComputeWebJobsSDKSvcBusQ.csproj -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/Functions.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/Performance/Microsoft.ServiceBus.MessagingPerformanceCounters.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/Performance/Microsoft.ServiceBus.MessagingPerformanceCounters.man -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/Program.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/_preprocess.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/app.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/packages.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKSvcBusQ/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKSvcBusQ/sw-file-icon.png -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/ComputeWebJobsSDKTable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/ComputeWebJobsSDKTable.csproj -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/Functions.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/Program.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/_preprocess.xml -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/app.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/packages.config -------------------------------------------------------------------------------- /Compute/ComputeWebJobsSDKTable/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/ComputeWebJobsSDKTable/sw-file-icon.png -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/App.config -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/DeployManageCloudServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/DeployManageCloudServices.csproj -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/ManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/ManagementController.cs -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/ManagementControllerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/ManagementControllerParameters.cs -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/Program.cs -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/_preprocess.xml -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/packages.config -------------------------------------------------------------------------------- /Compute/DeployManageCloudServices/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageCloudServices/sw-file-icon.png -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/App.config -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/DeployManageVirtualMachines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/DeployManageVirtualMachines.csproj -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/Program.cs -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/VMManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/VMManagementController.cs -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/VMManagementControllerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/VMManagementControllerParameters.cs -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/_preprocess.xml -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/packages.config -------------------------------------------------------------------------------- /Compute/DeployManageVirtualMachines/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageVirtualMachines/sw-file-icon.png -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/App.config -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/DeployManageWebSites.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/DeployManageWebSites.csproj -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/ManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/ManagementController.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/ManagementControllerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/ManagementControllerParameters.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/Program.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/PublishDemoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/PublishDemoHelper.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/_preprocess.xml -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/packages.config -------------------------------------------------------------------------------- /Compute/DeployManageWebSites/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Compute/DeployManageWebSites/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/App.config -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/DataBlobStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/DataBlobStorage.csproj -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/HelloWorld.png -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/Program.cs -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/packages.config -------------------------------------------------------------------------------- /Data Services/DataBlobStorage/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataBlobStorage/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataCacheService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/App.config -------------------------------------------------------------------------------- /Data Services/DataCacheService/DataCacheService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/DataCacheService.csproj -------------------------------------------------------------------------------- /Data Services/DataCacheService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/Program.cs -------------------------------------------------------------------------------- /Data Services/DataCacheService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataCacheService/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataCacheService/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataCacheService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/packages.config -------------------------------------------------------------------------------- /Data Services/DataCacheService/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataCacheService/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/App.config -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/DataDocumentDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/DataDocumentDB.csproj -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/Models/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/Models/Child.cs -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/Models/Family.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/Models/Family.cs -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/Models/Parent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/Models/Parent.cs -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/Models/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/Models/Pet.cs -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/Program.cs -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/packages.config -------------------------------------------------------------------------------- /Data Services/DataDocumentDB/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataDocumentDB/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataFileStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/App.config -------------------------------------------------------------------------------- /Data Services/DataFileStorage/DataFileStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/DataFileStorage.csproj -------------------------------------------------------------------------------- /Data Services/DataFileStorage/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/HelloWorld.png -------------------------------------------------------------------------------- /Data Services/DataFileStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/Program.cs -------------------------------------------------------------------------------- /Data Services/DataFileStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataFileStorage/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataFileStorage/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataFileStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/packages.config -------------------------------------------------------------------------------- /Data Services/DataFileStorage/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataFileStorage/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataSQLEF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/App.config -------------------------------------------------------------------------------- /Data Services/DataSQLEF/DataModel/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/DataModel/Enums.cs -------------------------------------------------------------------------------- /Data Services/DataSQLEF/DataModel/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/DataModel/Order.cs -------------------------------------------------------------------------------- /Data Services/DataSQLEF/DataModel/OrderDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/DataModel/OrderDbContext.cs -------------------------------------------------------------------------------- /Data Services/DataSQLEF/DataModel/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/DataModel/OrderItem.cs -------------------------------------------------------------------------------- /Data Services/DataSQLEF/DataSQLEF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/DataSQLEF.csproj -------------------------------------------------------------------------------- /Data Services/DataSQLEF/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/Program.cs -------------------------------------------------------------------------------- /Data Services/DataSQLEF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataSQLEF/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataSQLEF/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataSQLEF/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/packages.config -------------------------------------------------------------------------------- /Data Services/DataSQLEF/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataSQLEF/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/App.config -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/DataStorageQueue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/DataStorageQueue.csproj -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/Program.cs -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/packages.config -------------------------------------------------------------------------------- /Data Services/DataStorageQueue/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataStorageQueue/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DataTableStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/App.config -------------------------------------------------------------------------------- /Data Services/DataTableStorage/DataTableStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/DataTableStorage.csproj -------------------------------------------------------------------------------- /Data Services/DataTableStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/Program.cs -------------------------------------------------------------------------------- /Data Services/DataTableStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DataTableStorage/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DataTableStorage/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DataTableStorage/model/CustomerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/model/CustomerEntity.cs -------------------------------------------------------------------------------- /Data Services/DataTableStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/packages.config -------------------------------------------------------------------------------- /Data Services/DataTableStorage/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DataTableStorage/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/App.config -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/DeployManageAzureStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/DeployManageAzureStorage.csproj -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/ManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/ManagementController.cs -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/ManagementControllerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/ManagementControllerParameters.cs -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/Program.cs -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/packages.config -------------------------------------------------------------------------------- /Data Services/DeployManageAzureStorage/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageAzureStorage/sw-file-icon.png -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/App.config -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/CredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/CredentialsHelper.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/DeployManageSQLDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/DeployManageSQLDB.csproj -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/Program.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/SqlManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/SqlManagementController.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/SqlManagementControllerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/SqlManagementControllerParameters.cs -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/_preprocess.xml -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/packages.config -------------------------------------------------------------------------------- /Data Services/DeployManageSQLDB/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Data Services/DeployManageSQLDB/sw-file-icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/LICENSE -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/App.config -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/DeployManageVirtualNetwork.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/DeployManageVirtualNetwork.csproj -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/ManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/ManagementController.cs -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/ManagementControllerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/ManagementControllerParameters.cs -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/Program.cs -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/_Definitions/_project.vstemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/_Definitions/_project.vstemplate.xml -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/_preprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/_preprocess.xml -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/packages.config -------------------------------------------------------------------------------- /Network/DeployManageVirtualNetwork/sw-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Network/DeployManageVirtualNetwork/sw-file-icon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Shared/Common/AzureQuickStarts.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Shared/Common/AzureQuickStarts.Common.csproj -------------------------------------------------------------------------------- /Shared/Common/CertificateAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Shared/Common/CertificateAuthenticationHelper.cs -------------------------------------------------------------------------------- /Shared/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Shared/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Shared/Common/PublishSettingsSubscriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Shared/Common/PublishSettingsSubscriptionItem.cs -------------------------------------------------------------------------------- /Shared/Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureQuickStartsProjects/HEAD/Shared/Common/packages.config --------------------------------------------------------------------------------