├── .gitignore ├── Chapter01 ├── PHP │ └── index.php ├── VisualStudioWebApplication.sln └── VisualStudioWebApplication │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs │ ├── ApplicationInsights.config │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── VisualStudioWebApplication.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── packages.config ├── Chapter02 ├── MyFirstWebJob │ ├── MyFirstWebJob.sln │ └── MyFirstWebJob │ │ ├── App.config │ │ ├── MyFirstWebJob.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── MyFirstWebJobFromVisualStudio │ ├── MyFirstWebJobFromVisualStudio.sln │ └── MyFirstWebJobFromVisualStudio │ │ ├── App.config │ │ ├── MyFirstWebJobFromVisualStudio.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── webjob-publish-settings.json │ │ └── packages.config ├── MyFirstWebJobNodeJs │ └── run.js ├── MyFirstWebJobWebJobsSDK │ ├── MyFirstWebJobWebJobsSDK.sln │ └── MyFirstWebJobWebJobsSDK │ │ ├── App.config │ │ ├── Manual.cs │ │ ├── MyFirstWebJobWebJobsSDK.csproj │ │ ├── Program.cs │ │ ├── Timer.cs │ │ └── packages.config └── NodeJS │ └── run.js ├── Chapter03 ├── AciStart │ ├── Dockerfile │ └── app │ │ ├── index.html │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json └── AksStart │ ├── Dockerfile │ ├── app.py │ ├── create-service-principal.sh │ ├── docker-compose.yaml │ └── handsonazure.yml ├── Chapter04 ├── Container │ ├── .yo-rc.json │ ├── Dockerfile │ ├── HandsOnAzureServiceFabricContainer │ │ ├── .yo-rc.json │ │ ├── HandsOnAzureServiceFabricContainer │ │ │ ├── ApplicationManifest.xml │ │ │ └── HandsOnServicePkg │ │ │ │ ├── ServiceManifest.xml │ │ │ │ └── config │ │ │ │ └── Settings.xml │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ └── app.py ├── ReliableActors │ └── ReliableActors │ │ ├── ReliableActor.Client │ │ ├── Program.cs │ │ └── ReliableActor.Client.csproj │ │ ├── ReliableActor.Interfaces │ │ ├── IReliableActor.cs │ │ └── ReliableActor.Interfaces.csproj │ │ ├── ReliableActor │ │ ├── ActorEventSource.cs │ │ ├── PackageRoot │ │ │ ├── Config │ │ │ │ └── Settings.xml │ │ │ └── ServiceManifest.xml │ │ ├── Program.cs │ │ ├── ReliableActor.cs │ │ └── ReliableActor.csproj │ │ ├── ReliableActors.sln │ │ └── ReliableActors │ │ ├── ApplicationPackageRoot │ │ └── ApplicationManifest.xml │ │ ├── ApplicationParameters │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ │ ├── PublishProfiles │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ │ ├── ReliableActors.sfproj │ │ ├── Scripts │ │ └── Deploy-FabricApplication.ps1 │ │ └── packages.config └── ReliableService │ └── HandsOnAzureSfReliableService │ ├── HandsOnAzureSfReliableService.sln │ ├── HandsOnAzureSfReliableService │ ├── ApplicationPackageRoot │ │ └── ApplicationManifest.xml │ ├── ApplicationParameters │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ ├── HandsOnAzureSfReliableService.sfproj │ ├── PublishProfiles │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ ├── Scripts │ │ └── Deploy-FabricApplication.ps1 │ └── packages.config │ ├── HandsOnAzureStateful │ ├── HandsOnAzureStateful.cs │ ├── HandsOnAzureStateful.csproj │ ├── PackageRoot │ │ ├── Config │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ └── ServiceEventSource.cs │ ├── HandsOnAzureStateful2 │ ├── HandsOnAzureStateful2.cs │ ├── HandsOnAzureStateful2.csproj │ ├── PackageRoot │ │ ├── Config │ │ │ └── Settings.xml │ │ └── ServiceManifest.xml │ ├── Program.cs │ └── ServiceEventSource.cs │ ├── HandsOnAzureStatefulService │ ├── ApplicationPackageRoot │ │ └── ApplicationManifest.xml │ ├── ApplicationParameters │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ ├── HandsOnAzureStatefulService.sfproj │ ├── PublishProfiles │ │ ├── Cloud.xml │ │ ├── Local.1Node.xml │ │ └── Local.5Node.xml │ ├── Scripts │ │ └── Deploy-FabricApplication.ps1 │ └── packages.config │ └── HandsOnAzureStateless │ ├── HandsOnAzureStateless.cs │ ├── HandsOnAzureStateless.csproj │ ├── HttpCommunicationListener.cs │ ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml │ ├── Program.cs │ ├── ServiceEventSource.cs │ └── Startup.cs ├── Chapter06 ├── HandsOnAzureApp.Web │ └── HandsOnAzureApp.Web │ │ ├── HandsOnAzureApp.Web.sln │ │ └── HandsOnAzureApp.Web │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ │ ├── ApplicationInsights.config │ │ ├── Areas │ │ └── HelpPage │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ ├── App_Start │ │ │ └── HelpPageConfig.cs │ │ │ ├── Controllers │ │ │ └── HelpController.cs │ │ │ ├── HelpPage.css │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ ├── ModelDescriptions │ │ │ ├── CollectionModelDescription.cs │ │ │ ├── ComplexTypeModelDescription.cs │ │ │ ├── DictionaryModelDescription.cs │ │ │ ├── EnumTypeModelDescription.cs │ │ │ ├── EnumValueDescription.cs │ │ │ ├── IModelDocumentationProvider.cs │ │ │ ├── KeyValuePairModelDescription.cs │ │ │ ├── ModelDescription.cs │ │ │ ├── ModelDescriptionGenerator.cs │ │ │ ├── ModelNameAttribute.cs │ │ │ ├── ModelNameHelper.cs │ │ │ ├── ParameterAnnotation.cs │ │ │ ├── ParameterDescription.cs │ │ │ └── SimpleTypeModelDescription.cs │ │ │ ├── Models │ │ │ └── HelpPageApiModel.cs │ │ │ ├── SampleGeneration │ │ │ ├── HelpPageSampleGenerator.cs │ │ │ ├── HelpPageSampleKey.cs │ │ │ ├── ImageSample.cs │ │ │ ├── InvalidSample.cs │ │ │ ├── ObjectGenerator.cs │ │ │ ├── SampleDirection.cs │ │ │ └── TextSample.cs │ │ │ ├── Views │ │ │ ├── Help │ │ │ │ ├── Api.cshtml │ │ │ │ ├── DisplayTemplates │ │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ │ ├── ImageSample.cshtml │ │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ │ ├── Parameters.cshtml │ │ │ │ │ ├── Samples.cshtml │ │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ │ └── TextSample.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── ResourceModel.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ └── XmlDocumentationProvider.cs │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── HubController.cs │ │ └── ValuesController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── HandsOnAzureApp.Web.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config └── HandsOnAzureApp │ ├── HandsOnAzureApp.sln │ └── HandsOnAzureApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── HandsOnAzureApp.csproj │ ├── HandsOnAzureApp_TemporaryKey.pfx │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Chapter07 └── HandsOnAzure.Function │ ├── HandsOnAzure.Durable │ ├── .gitignore │ ├── HandsOnAzure.Durable.csproj │ └── host.json │ ├── HandsOnAzure.Function.sln │ └── HandsOnAzure.Function │ ├── .gitignore │ ├── Function1.cs │ ├── Function2.cs │ ├── Function3.cs │ ├── HandsOnAzure.Function.csproj │ └── host.json ├── Chapter09 └── HandsOnAzureCosmosDB │ ├── HandsOnAzureCosmosDB.sln │ └── HandsOnAzureCosmosDB │ ├── App.config │ ├── HandsOnAzureCosmosDB.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Chapter11 └── AzureStorage │ ├── AzureStorage.sln │ ├── BlobStorage │ ├── App.config │ ├── BlobStorage.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config │ ├── QueueStorage.Consumer │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueStorage.Consumer.csproj │ └── packages.config │ ├── QueueStorage │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueStorage.Producer.csproj │ └── packages.config │ └── TableStorage │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TableStorage.csproj │ └── packages.config ├── Chapter12 └── HandsOnAzure.EventHub │ ├── HandsOnAzure.EventHub.sln │ ├── HandsOnAzure.Receiver │ ├── App.config │ ├── HandsOnAzure.Receiver.csproj │ ├── MyFirstEventProcessor.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config │ └── HandsOnAzure.Sender │ ├── App.config │ ├── HandsOnAzure.Sender.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Chapter14 ├── HandsOnAzure.ServiceBus.Reader │ ├── App.config │ ├── HandsOnAzure.ServiceBus.Reader.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── HandsOnAzure.ServiceBus │ ├── App.config │ ├── HandsOnAzure.ServiceBus.csproj │ ├── HandsOnAzure.ServiceBus.sln │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Chapter15 └── NodeJS │ ├── index.js │ ├── package-lock.json │ └── package.json ├── Chapter20 ├── HandsOnAzureTrafficManager.sln └── HandsOnAzureTrafficManager │ ├── HandsOnAzureTrafficManager.csproj │ ├── Pages │ ├── About.cshtml │ ├── About.cshtml.cs │ ├── Contact.cshtml │ ├── Contact.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── StatusController.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ ├── handsonazure01-euw-appservice - Web Deploy.pubxml │ │ └── handsonazure02-eun-appservice - Web Deploy.pubxml │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/PHP/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication.sln -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/ApplicationInsights.config -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Content/Site.css -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Content/bootstrap.css -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Global.asax -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Global.asax.cs -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/respond.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Scripts/respond.min.js -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/Web.config -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/VisualStudioWebApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/VisualStudioWebApplication.csproj -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Web.Debug.config -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Web.Release.config -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/Web.config -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/favicon.ico -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter01/VisualStudioWebApplication/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter01/VisualStudioWebApplication/packages.config -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJob/MyFirstWebJob.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJob/MyFirstWebJob.sln -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJob/MyFirstWebJob/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJob/MyFirstWebJob/App.config -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJob/MyFirstWebJob/MyFirstWebJob.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJob/MyFirstWebJob/MyFirstWebJob.csproj -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJob/MyFirstWebJob/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJob/MyFirstWebJob/Program.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJob/MyFirstWebJob/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJob/MyFirstWebJob/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio.sln -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/App.config -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio.csproj -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/Program.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/Properties/webjob-publish-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/Properties/webjob-publish-settings.json -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobFromVisualStudio/MyFirstWebJobFromVisualStudio/packages.config -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobNodeJs/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobNodeJs/run.js -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK.sln -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/App.config -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/Manual.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK.csproj -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/Program.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/Timer.cs -------------------------------------------------------------------------------- /Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/MyFirstWebJobWebJobsSDK/MyFirstWebJobWebJobsSDK/packages.config -------------------------------------------------------------------------------- /Chapter02/NodeJS/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter02/NodeJS/run.js -------------------------------------------------------------------------------- /Chapter03/AciStart/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AciStart/Dockerfile -------------------------------------------------------------------------------- /Chapter03/AciStart/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AciStart/app/index.html -------------------------------------------------------------------------------- /Chapter03/AciStart/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AciStart/app/index.js -------------------------------------------------------------------------------- /Chapter03/AciStart/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AciStart/app/package-lock.json -------------------------------------------------------------------------------- /Chapter03/AciStart/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AciStart/app/package.json -------------------------------------------------------------------------------- /Chapter03/AksStart/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AksStart/Dockerfile -------------------------------------------------------------------------------- /Chapter03/AksStart/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AksStart/app.py -------------------------------------------------------------------------------- /Chapter03/AksStart/create-service-principal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AksStart/create-service-principal.sh -------------------------------------------------------------------------------- /Chapter03/AksStart/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AksStart/docker-compose.yaml -------------------------------------------------------------------------------- /Chapter03/AksStart/handsonazure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter03/AksStart/handsonazure.yml -------------------------------------------------------------------------------- /Chapter04/Container/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/.yo-rc.json -------------------------------------------------------------------------------- /Chapter04/Container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/Dockerfile -------------------------------------------------------------------------------- /Chapter04/Container/HandsOnAzureServiceFabricContainer/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/HandsOnAzureServiceFabricContainer/.yo-rc.json -------------------------------------------------------------------------------- /Chapter04/Container/HandsOnAzureServiceFabricContainer/HandsOnAzureServiceFabricContainer/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/HandsOnAzureServiceFabricContainer/HandsOnAzureServiceFabricContainer/ApplicationManifest.xml -------------------------------------------------------------------------------- /Chapter04/Container/HandsOnAzureServiceFabricContainer/HandsOnAzureServiceFabricContainer/HandsOnServicePkg/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/HandsOnAzureServiceFabricContainer/HandsOnAzureServiceFabricContainer/HandsOnServicePkg/ServiceManifest.xml -------------------------------------------------------------------------------- /Chapter04/Container/HandsOnAzureServiceFabricContainer/HandsOnAzureServiceFabricContainer/HandsOnServicePkg/config/Settings.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Container/HandsOnAzureServiceFabricContainer/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/HandsOnAzureServiceFabricContainer/install.ps1 -------------------------------------------------------------------------------- /Chapter04/Container/HandsOnAzureServiceFabricContainer/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/HandsOnAzureServiceFabricContainer/uninstall.ps1 -------------------------------------------------------------------------------- /Chapter04/Container/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/Container/app.py -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor.Client/Program.cs -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor.Client/ReliableActor.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor.Client/ReliableActor.Client.csproj -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor.Interfaces/IReliableActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor.Interfaces/IReliableActor.cs -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor.Interfaces/ReliableActor.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor.Interfaces/ReliableActor.Interfaces.csproj -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor/ActorEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor/ActorEventSource.cs -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor/Program.cs -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor/ReliableActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor/ReliableActor.cs -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActor/ReliableActor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActor/ReliableActor.csproj -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors.sln -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/ReliableActors.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/ReliableActors.sfproj -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /Chapter04/ReliableActors/ReliableActors/ReliableActors/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableActors/ReliableActors/ReliableActors/packages.config -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService.sln -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService.sfproj -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureSfReliableService/packages.config -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/HandsOnAzureStateful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/HandsOnAzureStateful.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/HandsOnAzureStateful.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/HandsOnAzureStateful.csproj -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/Program.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful/ServiceEventSource.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/HandsOnAzureStateful2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/HandsOnAzureStateful2.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/HandsOnAzureStateful2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/HandsOnAzureStateful2.csproj -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/Program.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateful2/ServiceEventSource.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationParameters/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationParameters/Local.1Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationParameters/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/ApplicationParameters/Local.5Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/HandsOnAzureStatefulService.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/HandsOnAzureStatefulService.sfproj -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/PublishProfiles/Local.1Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/PublishProfiles/Local.1Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/PublishProfiles/Local.5Node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/PublishProfiles/Local.5Node.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStatefulService/packages.config -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/HandsOnAzureStateless.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/HandsOnAzureStateless.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/HandsOnAzureStateless.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/HandsOnAzureStateless.csproj -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/HttpCommunicationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/HttpCommunicationListener.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/Program.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/ServiceEventSource.cs -------------------------------------------------------------------------------- /Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter04/ReliableService/HandsOnAzureSfReliableService/HandsOnAzureStateless/Startup.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web.sln -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/ApplicationInsights.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Content/Site.css -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Content/bootstrap.css -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Controllers/HubController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Controllers/HubController.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Global.asax -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Global.asax.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web.csproj -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/respond.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Scripts/respond.min.js -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/Web.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Web.Debug.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Web.Release.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/Web.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/favicon.ico -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp.Web/HandsOnAzureApp.Web/HandsOnAzureApp.Web/packages.config -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp.sln -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/App.xaml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/HandsOnAzureApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/HandsOnAzureApp.csproj -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/HandsOnAzureApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/HandsOnAzureApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/MainPage.xaml -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter06/HandsOnAzureApp/HandsOnAzureApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter06/HandsOnAzureApp/HandsOnAzureApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Durable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Durable/.gitignore -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Durable/HandsOnAzure.Durable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Durable/HandsOnAzure.Durable.csproj -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Durable/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Function.sln -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/.gitignore -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/Function1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/Function1.cs -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/Function2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/Function2.cs -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/Function3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/Function3.cs -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/HandsOnAzure.Function.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/HandsOnAzure.Function.csproj -------------------------------------------------------------------------------- /Chapter07/HandsOnAzure.Function/HandsOnAzure.Function/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB.sln -------------------------------------------------------------------------------- /Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/App.config -------------------------------------------------------------------------------- /Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB.csproj -------------------------------------------------------------------------------- /Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/Program.cs -------------------------------------------------------------------------------- /Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter09/HandsOnAzureCosmosDB/HandsOnAzureCosmosDB/packages.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/AzureStorage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/AzureStorage.sln -------------------------------------------------------------------------------- /Chapter11/AzureStorage/BlobStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/BlobStorage/App.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/BlobStorage/BlobStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/BlobStorage/BlobStorage.csproj -------------------------------------------------------------------------------- /Chapter11/AzureStorage/BlobStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/BlobStorage/Program.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/BlobStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/BlobStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/BlobStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/BlobStorage/packages.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage.Consumer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage.Consumer/App.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage.Consumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage.Consumer/Program.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage.Consumer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage.Consumer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage.Consumer/QueueStorage.Consumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage.Consumer/QueueStorage.Consumer.csproj -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage.Consumer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage.Consumer/packages.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage/App.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage/Program.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage/QueueStorage.Producer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage/QueueStorage.Producer.csproj -------------------------------------------------------------------------------- /Chapter11/AzureStorage/QueueStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/QueueStorage/packages.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/TableStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/TableStorage/App.config -------------------------------------------------------------------------------- /Chapter11/AzureStorage/TableStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/TableStorage/Program.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/TableStorage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/TableStorage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter11/AzureStorage/TableStorage/TableStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/TableStorage/TableStorage.csproj -------------------------------------------------------------------------------- /Chapter11/AzureStorage/TableStorage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter11/AzureStorage/TableStorage/packages.config -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.EventHub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.EventHub.sln -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/App.config -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/HandsOnAzure.Receiver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/HandsOnAzure.Receiver.csproj -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/MyFirstEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/MyFirstEventProcessor.cs -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/Program.cs -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Receiver/packages.config -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/App.config -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/HandsOnAzure.Sender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/HandsOnAzure.Sender.csproj -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/Program.cs -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter12/HandsOnAzure.EventHub/HandsOnAzure.Sender/packages.config -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus.Reader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus.Reader/App.config -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus.Reader/HandsOnAzure.ServiceBus.Reader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus.Reader/HandsOnAzure.ServiceBus.Reader.csproj -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus.Reader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus.Reader/Program.cs -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus.Reader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus.Reader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus.Reader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus.Reader/packages.config -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus/App.config -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus/HandsOnAzure.ServiceBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus/HandsOnAzure.ServiceBus.csproj -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus/HandsOnAzure.ServiceBus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus/HandsOnAzure.ServiceBus.sln -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus/Program.cs -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter14/HandsOnAzure.ServiceBus/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter14/HandsOnAzure.ServiceBus/packages.config -------------------------------------------------------------------------------- /Chapter15/NodeJS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter15/NodeJS/index.js -------------------------------------------------------------------------------- /Chapter15/NodeJS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter15/NodeJS/package-lock.json -------------------------------------------------------------------------------- /Chapter15/NodeJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter15/NodeJS/package.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager.sln -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/HandsOnAzureTrafficManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/HandsOnAzureTrafficManager.csproj -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/About.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Contact.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Index.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/StatusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/StatusController.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Program.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Properties/PublishProfiles/handsonazure01-euw-appservice - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Properties/PublishProfiles/handsonazure01-euw-appservice - Web Deploy.pubxml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Properties/PublishProfiles/handsonazure02-eun-appservice - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Properties/PublishProfiles/handsonazure02-eun-appservice - Web Deploy.pubxml -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/Startup.cs -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/appsettings.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/Chapter20/HandsOnAzureTrafficManager/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Azure-for-Developers/HEAD/README.md --------------------------------------------------------------------------------