├── .gitattributes ├── .gitignore ├── Labs ├── ASP.NET Startup, Configuration, and Middleware │ ├── DEV10 - ASP.NET Startup, Configuration, and Middleware.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ └── 012.png │ └── readme.md ├── Add Azure AD Sign-In to a ASP.NET App │ ├── AZR04 - Add Azure AD Sign-In to a ASP.NET App.docx │ ├── readme.md │ └── src │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WebApp-OpenIDConnect-DotNet │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── Startup.Auth.cs │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── ErrorController.cs │ │ │ └── HomeController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Icon.png │ │ ├── Project_Readme.html │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-2.1.3.intellisense.js │ │ │ ├── jquery-2.1.3.js │ │ │ ├── jquery-2.1.3.min.js │ │ │ ├── jquery-2.1.3.min.map │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── modernizr-2.8.3.js │ │ │ ├── npm.js │ │ │ ├── respond.js │ │ │ ├── respond.matchmedia.addListener.js │ │ │ ├── respond.matchmedia.addListener.min.js │ │ │ └── respond.min.js │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebApp-OpenIDConnect-DotNet.csproj │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── packages.config │ │ └── WebApp.sln ├── Azure Active Directory B2C │ ├── AZR03 - Azure Active Directory B2C.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ └── 022.png │ ├── readme.md │ └── src │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WebApp-OpenIDConnect-DotNet │ │ ├── .bowerrc │ │ ├── AzureAdB2COptions.cs │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── SessionController.cs │ │ ├── OpenIdConnectOptionsSetup.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Session │ │ │ │ └── SignedOut.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── WebApp-OpenIDConnect-DotNet.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bundleconfig.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ ├── banner3.svg │ │ │ └── banner4.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 │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── WebApp-OpenIdConnect-DotNet.sln ├── Azure CLI Quick Start │ ├── AZR06 - Azure CLI Quick Start.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ └── 014.png │ └── readme.md ├── Azure Cosmos DB │ ├── README.md │ ├── deployment │ │ └── azuredeploy.json │ ├── images │ │ ├── 50_results.PNG │ │ ├── DocumentExplorer.PNG │ │ ├── QueryExplorer.PNG │ │ ├── ScriptExplorer.PNG │ │ ├── azure_deploy.png │ │ ├── azure_deploy_output.png │ │ ├── between_filter.PNG │ │ ├── central_us.png │ │ ├── concurrency.PNG │ │ ├── data-saved.PNG │ │ ├── date_formatted.PNG │ │ ├── filter1.PNG │ │ ├── filter2.PNG │ │ ├── filter3.PNG │ │ ├── filter4.PNG │ │ ├── filter5.PNG │ │ ├── home_controller.PNG │ │ ├── home_page.PNG │ │ ├── id_error.PNG │ │ ├── id_filter.PNG │ │ ├── id_results.PNG │ │ ├── insert-data.PNG │ │ ├── join.PNG │ │ ├── join2.PNG │ │ ├── no_results.PNG │ │ ├── north_europe.png │ │ ├── order_by.PNG │ │ ├── people-result.PNG │ │ ├── product-result.PNG │ │ ├── projection.PNG │ │ ├── projection2.png │ │ ├── select_from_collection.PNG │ │ ├── select_from_logs.PNG │ │ ├── southeast_asia.png │ │ ├── top_1.png │ │ └── west_us.png │ └── src │ │ ├── Microsoft.CodeChallenges.CosmosDB.Lab.sln │ │ └── Microsoft.CodeChallenges.CosmosDB.Lab │ │ ├── Content │ │ ├── Site.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 │ │ └── images │ │ │ └── animatedCircle.gif │ │ ├── Controllers │ │ ├── HomeController.cs │ │ └── InsertController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Microsoft.CodeChallenges.CosmosDB.Lab.csproj │ │ ├── Models │ │ ├── HomeViewModel.cs │ │ └── QueryModel.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-3.1.1.intellisense.js │ │ ├── jquery-3.1.1.js │ │ ├── jquery-3.1.1.min.js │ │ ├── jquery-3.1.1.min.map │ │ ├── jquery-3.1.1.slim.js │ │ ├── jquery-3.1.1.slim.min.js │ │ ├── jquery-3.1.1.slim.min.map │ │ ├── respond.js │ │ ├── respond.matchmedia.addListener.js │ │ ├── respond.matchmedia.addListener.min.js │ │ ├── respond.min.js │ │ ├── tryout.js │ │ └── vs │ │ │ ├── base │ │ │ ├── ui │ │ │ │ └── widgets │ │ │ │ │ ├── case-sensitive.svg │ │ │ │ │ ├── regex.svg │ │ │ │ │ └── whole-word.svg │ │ │ └── worker │ │ │ │ ├── workerMain.js │ │ │ │ ├── workerServer.js │ │ │ │ ├── workerServer.nls.js │ │ │ │ └── workerServer.nls.keys.js │ │ │ ├── editor │ │ │ ├── contrib │ │ │ │ └── find │ │ │ │ │ ├── cancelSelectionFind-inverse.svg │ │ │ │ │ ├── cancelSelectionFind.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── expando-collapsed.png │ │ │ │ │ ├── next.svg │ │ │ │ │ └── previous.svg │ │ │ ├── editor.main.css │ │ │ ├── editor.main.js │ │ │ ├── editor.main.nls.js │ │ │ ├── editor.main.nls.keys.js │ │ │ ├── modes │ │ │ │ └── monarch │ │ │ │ │ ├── monarchWorker.js │ │ │ │ │ ├── monarchWorker.nls.js │ │ │ │ │ └── monarchWorker.nls.keys.js │ │ │ └── worker │ │ │ │ ├── editorWorkerServer.js │ │ │ │ ├── editorWorkerServer.nls.js │ │ │ │ └── editorWorkerServer.nls.keys.js │ │ │ ├── languages │ │ │ ├── json │ │ │ │ ├── json.js │ │ │ │ ├── json.nls.js │ │ │ │ ├── json.nls.keys.js │ │ │ │ ├── jsonWorker.js │ │ │ │ ├── jsonWorker.nls.js │ │ │ │ └── jsonWorker.nls.keys.js │ │ │ ├── nullWorker.js │ │ │ ├── nullWorker.nls.js │ │ │ └── nullWorker.nls.keys.js │ │ │ └── loader.js │ │ ├── Seed │ │ └── Tweets.json │ │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Insert │ │ │ ├── Index.cshtml │ │ │ └── Seed.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 │ │ └── glyphicons-halflings-regular.woff2 │ │ └── packages.config ├── Azure Database for MySQL │ ├── For Github │ │ └── MySQL-QSC-hands-on-lab.docx │ └── MySQL-QSC-hands-on-lab.docx ├── Azure Database for PostgreSQL │ ├── 1. Intro.md │ ├── 2. Lab.md │ └── 3. Conclusion.md ├── Azure Functions │ ├── AZR01 - Azure Functions.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ └── 015.png │ └── readme.md ├── Azure HDInsight │ ├── DataScienceLab │ │ ├── .DS_Store │ │ ├── Data │ │ │ ├── .DS_Store │ │ │ └── sparklabs │ │ │ │ ├── .DS_Store │ │ │ │ └── Lab03 │ │ │ │ ├── .DS_Store │ │ │ │ ├── SaleTransactions1.csv │ │ │ │ └── SaleTransactions2.csv │ │ ├── Notebooks │ │ │ ├── 05+-+Spark+Machine+Learning+-+Predictive+analysis+on+food+inspection+data+using+MLLib.ipynb │ │ │ └── Final+Lab.ipynb │ │ ├── README.docx │ │ ├── deployment │ │ │ ├── .DS_Store │ │ │ ├── media │ │ │ │ ├── image1.png │ │ │ │ ├── image10.png │ │ │ │ ├── image11.png │ │ │ │ ├── image12.png │ │ │ │ ├── image13.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ ├── image6.png │ │ │ │ ├── image7.png │ │ │ │ ├── image8.png │ │ │ │ └── image9.png │ │ │ ├── readme.docx │ │ │ └── readme.md │ │ ├── hands-on-lab.docx │ │ ├── hands-on-lab.md │ │ ├── images │ │ │ ├── BookSalesPrediction.png │ │ │ ├── JupyterNotebooks.png │ │ │ ├── Jupyter_FoodInspection.png │ │ │ ├── Sc1DataVisualize.png │ │ │ ├── Sc1ModelVisualize.png │ │ │ ├── Sc2DataVisualize.png │ │ │ ├── Sc2ModelVisualize.png │ │ │ ├── Storage.png │ │ │ ├── blob.png │ │ │ └── uploadweblogs.png │ │ ├── media │ │ │ ├── image1.png │ │ │ ├── image2.png │ │ │ ├── image3.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ └── image6.png │ │ └── readme.md │ └── HiveLab │ │ ├── .DS_Store │ │ ├── Data │ │ ├── .DS_Store │ │ └── hadooplabs │ │ │ ├── .DS_Store │ │ │ └── Lab1 │ │ │ └── weblogs.csv │ │ ├── README.docx │ │ ├── deployment │ │ ├── media │ │ │ ├── image1.png │ │ │ ├── image2.png │ │ │ ├── image3.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ ├── image6.png │ │ │ └── image7.png │ │ ├── readme.docx │ │ └── readme.md │ │ ├── hands-on-lab.docx │ │ ├── hands-on-lab.md │ │ ├── images │ │ ├── BookSalesPrediction.png │ │ ├── HiveViews.png │ │ ├── HiveVisualExplain.png │ │ ├── Sc1WhereClauses.png │ │ ├── Sc2TopSellingBooks.png │ │ ├── Storage.png │ │ ├── blob.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ └── uploadweblogs.png │ │ └── readme.md ├── Azure SQL Database │ ├── .gitignore │ ├── README.md │ ├── deployment │ │ ├── azuredeploy.json │ │ ├── database │ │ │ ├── 0_master_prepare.sql │ │ │ ├── 1_head_prepare.sql │ │ │ ├── 2_products_prepare.sql │ │ │ ├── 3_order_shard_prepare.sql │ │ │ ├── 4_insert_customer_orders.sql │ │ │ ├── README.md │ │ │ ├── ShardMapPrep │ │ │ │ ├── Extract │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Extract.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── packages.config │ │ │ │ ├── Prepare │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Models.cs │ │ │ │ │ ├── Prepare.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── packages.config │ │ │ │ └── ShardMapPrep.sln │ │ │ ├── order details.json │ │ │ └── orders.json │ │ └── readme.md │ ├── hands-on-lab.docx │ ├── hands-on-lab.html │ ├── hands-on-lab.md │ ├── img │ │ ├── 000-select-scenario-1-controller.png │ │ ├── 005-navigate-to-scenario-1.png │ │ ├── 010-modify-scenario-1-query.png │ │ ├── 015-scenario-1-join-query.png │ │ ├── 020-select-scenario-2-controller.png │ │ ├── 025-scenario-2-initial-query.png │ │ ├── 030-scenario-2-aggregate-query.png │ │ ├── 035-select-scenario-3-controller.png │ │ ├── 040-scenario-3-create-button.png │ │ ├── 045-scenario-3-create-success.png │ │ ├── 050-scenario-3-customer-order-count.png │ │ └── 055-scenario-3-prevent-transaction-commit.png │ └── src │ │ ├── Azure SQL DB Lab.sln │ │ └── LabWeb │ │ ├── Config.cs │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── Scenario1Controller.cs │ │ ├── Scenario2Controller.cs │ │ └── Scenario3Controller.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Helpers │ │ ├── ResultRow.cs │ │ ├── ResultSet.cs │ │ ├── ResultsHelper.cs │ │ └── ResultsViewModel.cs │ │ ├── LabWeb.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ └── respond.js │ │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Scenario1 │ │ │ └── Index.cshtml │ │ ├── Scenario2 │ │ │ └── Index.cshtml │ │ ├── Scenario3 │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── ResultsView.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 ├── Azure Search │ ├── README.md │ ├── azure-search-deploy.json │ ├── hands-on-lab.docx │ ├── hands-on-lab.md │ ├── images │ │ ├── auto_complete.png │ │ ├── auto_suggest.png │ │ ├── azure_search_service.PNG │ │ ├── engineer_with_facets.PNG │ │ ├── first_engineer_search.PNG │ │ ├── jobs_lab_azure_search1.png │ │ ├── jobs_lab_azure_search2.png │ │ ├── jobs_lab_azure_search3.png │ │ ├── kownsil_search.PNG │ │ ├── map_filter.PNG │ │ ├── map_results.PNG │ │ ├── map_results_raduis.PNG │ │ ├── second_enginer_search.PNG │ │ └── synonym_match.png │ ├── readme.docx │ ├── src │ │ ├── Microsoft.CodeChallenges.AzureSearch.Lab.sln │ │ └── Microsoft.CodeChallenges.AzureSearch.Lab │ │ │ ├── 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 │ │ │ ├── Configuration │ │ │ └── SearchConfig.cs │ │ │ ├── Controls │ │ │ ├── CustomMapIcon.xaml │ │ │ ├── CustomMapIcon.xaml.cs │ │ │ ├── LocationSearchIcon.xaml │ │ │ └── LocationSearchIcon.xaml.cs │ │ │ ├── Converters │ │ │ └── HightlightTextBlock.cs │ │ │ ├── Extensions │ │ │ └── GeopointExtensions.cs │ │ │ ├── Microsoft.CodeChallenges.AzureSearch.Lab.csproj │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── Annotations.cs │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ ├── SearchModels │ │ │ ├── FacetGroup.cs │ │ │ ├── FacetSelection.cs │ │ │ ├── JobResult.cs │ │ │ ├── PositionDistanceSearch.cs │ │ │ └── SearchResponse.cs │ │ │ ├── Services │ │ │ └── JobSearchService.cs │ │ │ ├── ViewModels │ │ │ └── SearchViewModel.cs │ │ │ ├── Views │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Search.xaml │ │ │ └── Search.xaml.cs │ │ │ └── project.json │ └── utilities │ │ ├── Microsoft.CodeChallenge.AzureSearch.DataSeed │ │ ├── App.config │ │ ├── Microsoft.CodeChallenge.AzureSearch.DataSeed.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SeedService.cs │ │ ├── data │ │ │ ├── testData0.json │ │ │ ├── testData1.json │ │ │ ├── testData10.json │ │ │ ├── testData11.json │ │ │ ├── testData12.json │ │ │ ├── testData13.json │ │ │ ├── testData14.json │ │ │ ├── testData15.json │ │ │ ├── testData16.json │ │ │ ├── testData17.json │ │ │ ├── testData18.json │ │ │ ├── testData19.json │ │ │ ├── testData2.json │ │ │ ├── testData20.json │ │ │ ├── testData21.json │ │ │ ├── testData22.json │ │ │ ├── testData23.json │ │ │ ├── testData24.json │ │ │ ├── testData25.json │ │ │ ├── testData26.json │ │ │ ├── testData27.json │ │ │ ├── testData28.json │ │ │ ├── testData29.json │ │ │ ├── testData3.json │ │ │ ├── testData30.json │ │ │ ├── testData31.json │ │ │ ├── testData32.json │ │ │ ├── testData33.json │ │ │ ├── testData34.json │ │ │ ├── testData35.json │ │ │ ├── testData36.json │ │ │ ├── testData37.json │ │ │ ├── testData38.json │ │ │ ├── testData39.json │ │ │ ├── testData4.json │ │ │ ├── testData40.json │ │ │ ├── testData41.json │ │ │ ├── testData42.json │ │ │ ├── testData43.json │ │ │ ├── testData44.json │ │ │ ├── testData45.json │ │ │ ├── testData46.json │ │ │ ├── testData47.json │ │ │ ├── testData48.json │ │ │ ├── testData49.json │ │ │ ├── testData5.json │ │ │ ├── testData50.json │ │ │ ├── testData51.json │ │ │ ├── testData52.json │ │ │ ├── testData53.json │ │ │ ├── testData54.json │ │ │ ├── testData55.json │ │ │ ├── testData56.json │ │ │ ├── testData6.json │ │ │ ├── testData7.json │ │ │ ├── testData8.json │ │ │ └── testData9.json │ │ └── packages.config │ │ └── Microsoft.CodeChallenges.AzureSearch.DataSeed.sln ├── Azure Stack │ ├── AZR07 - Azure Stack.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ └── 007.png │ ├── readme.md │ └── src │ │ └── azuredeploy.json ├── BotFramework │ ├── README.md │ └── hands-on-lab.docx ├── Build Smarter Apps with Xamarin & the Intelligent Cloud │ ├── DEV07 - Build Smarter Apps with Xamarin & the Intelligent Cloud.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ └── 011.png │ ├── readme.md │ └── src │ │ ├── Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── IntelligentAppChallenge.Droid.csproj │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── app.config │ │ └── packages.config │ │ ├── IntelligentAppChallenge.sln │ │ ├── IntelligentAppChallenge │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── FaceViewModel.cs │ │ ├── IntelligentAppChallenge.projitems │ │ └── IntelligentAppChallenge.shproj │ │ ├── Microsoft.ProjectOxford.Face │ │ ├── Contract │ │ │ ├── AddPersistedFaceResult.cs │ │ │ ├── Candidate.cs │ │ │ ├── ClientError.cs │ │ │ ├── CreatePersonResult.cs │ │ │ ├── Face.cs │ │ │ ├── FaceAttributes.cs │ │ │ ├── FaceLandmarks.cs │ │ │ ├── FaceList.cs │ │ │ ├── FaceListMetadata.cs │ │ │ ├── FaceMetadata.cs │ │ │ ├── FaceRectangle.cs │ │ │ ├── FacialHair.cs │ │ │ ├── FeatureCoordinate.cs │ │ │ ├── GlassesTypes.cs │ │ │ ├── GroupResult.cs │ │ │ ├── HeadPose.cs │ │ │ ├── IdentifyResult.cs │ │ │ ├── Person.cs │ │ │ ├── PersonFace.cs │ │ │ ├── PersonGroup.cs │ │ │ ├── SimilarFace.cs │ │ │ ├── SimilarPersistedFace.cs │ │ │ ├── TrainingStatus.cs │ │ │ └── VerifyResult.cs │ │ ├── FaceAPIException.cs │ │ ├── FaceClientSDK.nuspec │ │ ├── FaceServiceClient.cs │ │ ├── IFaceServiceClient.cs │ │ ├── Microsoft.ProjectOxford.Face.csproj │ │ ├── Microsoft.ProjectOxford.Face.sln │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── IntelligentAppChallenge.iOS.csproj │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── app.config │ │ └── packages.config ├── Build a simple API with ASP.NET Core │ ├── DEV11 - Build a simple API with ASP.NET Core.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ └── 012.png │ └── readme.md ├── Build and Test, See how Mobile Center helps you ship apps faster │ ├── DEV05 - Build and Test, See how Mobile Center helps you ship apps faster.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ └── 026.png │ ├── readme.md │ └── src │ │ ├── Build.keystore │ │ └── KeystoreInfo.txt ├── Building Your First Mobile App for iOS, Android, and Windows │ ├── DEV06 - Building Your First Mobile App for iOS, Android, and Windows.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ └── 013.png │ ├── readme.md │ └── src │ │ ├── FirstApp.sln │ │ └── FirstApp │ │ ├── FirstApp.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FirstApp.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ └── packages.config │ │ ├── FirstApp.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-100.png │ │ │ ├── LockScreenLogo.scale-125.png │ │ │ ├── LockScreenLogo.scale-150.png │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── LockScreenLogo.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-125.png │ │ │ ├── SplashScreen.scale-150.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── FirstApp.UWP.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── project.json │ │ ├── FirstApp.iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── FirstApp.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ │ └── FirstApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CardViewCell.cs │ │ ├── FirstApp.projitems │ │ ├── FirstApp.shproj │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs ├── Continuous Deployment of ASP.NET Core Websites to Azure with VSTS │ ├── DEV01 - Continuous Deployment of ASP.NET Core Websites to Azure with VSTS_new.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ ├── 026.png │ │ ├── 027.png │ │ ├── 028.png │ │ ├── 029.png │ │ ├── 030.png │ │ ├── 031.png │ │ ├── 032.png │ │ ├── 033.png │ │ ├── 034.png │ │ ├── 035.png │ │ ├── 036.png │ │ └── 037.png │ └── readme.md ├── Create Your First ASP.NET Core Application with MVC │ ├── DEV09 - Create Your First ASP.NET Core Application with MVC.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ └── 018.png │ └── readme.md ├── Deploying Docker Container Apps to Azure App Services │ ├── AZR05 - Deploying Docker Container Apps to Azure App Services.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ └── 024.png │ └── readme.md ├── Getting Started with Application Insights for your Azure Web Service │ ├── DEV03 - Getting Started with Application Insights for your Azure Web Service.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ ├── 026.png │ │ ├── 027.png │ │ ├── 028.png │ │ ├── 029.png │ │ ├── 030.png │ │ ├── 031.png │ │ ├── 032.png │ │ ├── 033.png │ │ ├── 034.png │ │ ├── 035.png │ │ ├── 036.png │ │ ├── 037.png │ │ ├── 038.png │ │ ├── 039.png │ │ ├── 040.png │ │ ├── 041.png │ │ ├── 042.png │ │ ├── 043.png │ │ ├── 044.png │ │ ├── 045.png │ │ ├── 046.png │ │ ├── 047.png │ │ ├── 048.png │ │ ├── 049.png │ │ ├── 050.png │ │ ├── 051.png │ │ ├── 052.png │ │ ├── 053.png │ │ ├── 054.png │ │ ├── 055.png │ │ ├── 056.png │ │ ├── 057.png │ │ ├── 058.png │ │ ├── 059.png │ │ ├── 060.png │ │ ├── 061.png │ │ ├── 062.png │ │ └── 063.png │ └── readme.md ├── Getting Started with Git in Visual Studio │ ├── DEV02 - Getting Started with Git in Visual Studio.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ ├── 026.png │ │ ├── 027.png │ │ ├── 028.png │ │ ├── 029.png │ │ ├── 030.png │ │ ├── 031.png │ │ ├── 032.png │ │ ├── 033.png │ │ ├── 034.png │ │ ├── 035.png │ │ └── 036.png │ └── readme.md ├── Getting Started with Mobile Development for WPF Developers │ ├── DEV08 - Getting Started with Mobile Development for WPF Developers.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ └── 013.png │ ├── readme.md │ └── src │ │ ├── FirstApp.sln │ │ └── FirstApp │ │ ├── FirstApp.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FirstApp.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ └── packages.config │ │ ├── FirstApp.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-100.png │ │ │ ├── LockScreenLogo.scale-125.png │ │ │ ├── LockScreenLogo.scale-150.png │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── LockScreenLogo.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-125.png │ │ │ ├── SplashScreen.scale-150.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── FirstApp.UWP.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── project.json │ │ ├── FirstApp.iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── FirstApp.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ │ └── FirstApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CardViewCell.cs │ │ ├── FirstApp.projitems │ │ ├── FirstApp.shproj │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs ├── Live Unit Testing, Refactoring, and Code Style │ ├── DEV12 - Live Unit Testing, Refactoring, and Code Style.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ └── 026.png │ ├── readme.md │ └── src │ │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ │ ├── MvcMovie │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── Startup.Auth.cs │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── TextFile1.txt │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── HelloWorldController.cs │ │ │ ├── HomeController.cs │ │ │ └── MoviesController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Migrations │ │ │ ├── 201309280158276_Initial.Designer.cs │ │ │ ├── 201309280158276_Initial.cs │ │ │ ├── 201309280158276_Initial.resx │ │ │ ├── 201309280212154_Rating.Designer.cs │ │ │ ├── 201309280212154_Rating.cs │ │ │ ├── 201309280212154_Rating.resx │ │ │ ├── 201309302013486_DataAnnotations.Designer.cs │ │ │ ├── 201309302013486_DataAnnotations.cs │ │ │ ├── 201309302013486_DataAnnotations.resx │ │ │ └── Configuration.cs │ │ ├── Models │ │ │ ├── AccountViewModels.cs │ │ │ ├── IMovieRepository.cs │ │ │ ├── IdentityModels.cs │ │ │ ├── Movie.cs │ │ │ └── MovieRepository.cs │ │ ├── MvcMovie.csproj │ │ ├── Project_Readme.html │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── 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 │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Manage.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ │ ├── _ExternalLoginsListPartial.cshtml │ │ │ │ ├── _RemoveAccountPartial.cshtml │ │ │ │ └── _SetPasswordPartial.cshtml │ │ │ ├── HelloWorld │ │ │ │ ├── Index.cshtml │ │ │ │ └── Welcome.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Movies │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.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 │ │ ├── MvcMovieRTM.sln │ │ └── Test │ │ ├── MoviesControllerIndex.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Test.csproj │ │ ├── app.config │ │ └── packages.config ├── Logic Apps │ ├── AZR02 - Logic Apps.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ ├── 026.png │ │ ├── 027.png │ │ ├── 028.png │ │ ├── 029.png │ │ ├── 030.png │ │ ├── 031.png │ │ ├── 032.png │ │ ├── 033.png │ │ ├── 034.png │ │ └── 035.png │ └── readme.md ├── Python-Tools-for-Visual-Studio │ └── PythonToolsLab │ │ ├── PyRegression.py │ │ ├── PythonToolsLab.docx │ │ └── PythonToolsLab.md ├── R-Tools-for-Visual-Studio │ ├── Build Quick Start Challenge for R Tools for Visual Studio.docx │ ├── Solution │ │ ├── Solution.rproj │ │ ├── Solution.rxproj │ │ ├── app │ │ │ ├── server.R │ │ │ └── ui.R │ │ ├── dependencies.R │ │ └── stocks.R │ ├── Starter │ │ ├── Starter.rproj │ │ ├── Starter.rxproj │ │ ├── app │ │ │ ├── server.R │ │ │ └── ui.R │ │ ├── dependencies.R │ │ └── stocks.R │ └── Stocks.sln ├── SQL on Linux-Docker-OpenShift │ ├── Lab-Scripts │ │ ├── 01-cluster-up.bat │ │ ├── 02-port-forward.bat │ │ ├── 03-PersonDirectory-db-script.sql │ │ └── 04-cluster-down.bat │ ├── README.md │ ├── docs │ │ └── Lab01 - Run SQL Server in OpenShift Container Platform.docx │ ├── dotnet-core-mssql-app.sln │ ├── global.json │ ├── src │ │ └── dotnet-core-mssql-app │ │ │ ├── .bowerrc │ │ │ ├── Classes │ │ │ └── ConnectionSetting.cs │ │ │ ├── Contexts │ │ │ └── AppContext.cs │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Models │ │ │ └── Person.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Repository │ │ │ └── PersonRepository.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.json │ │ │ ├── bower.json │ │ │ ├── bundleconfig.json │ │ │ ├── dotnet-core-mssql-app.xproj │ │ │ ├── project.json │ │ │ ├── run │ │ │ ├── web.config │ │ │ └── wwwroot │ │ │ ├── _references.js │ │ │ ├── css │ │ │ ├── main.css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ └── logo.png │ │ │ ├── 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 │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ └── pics │ │ │ ├── Amy_Jones.jpg │ │ │ ├── Eugene_Lee.jpg │ │ │ ├── Gary_Donovan.jpg │ │ │ ├── James_King.jpg │ │ │ ├── John_Williams.jpg │ │ │ ├── Julie_Taylor.jpg │ │ │ ├── Kathleen_Byrne.jpg │ │ │ ├── Lisa_Wong.jpg │ │ │ ├── Paul_Jones.jpg │ │ │ ├── Paula_Gates.jpg │ │ │ ├── Ray_Moore.jpg │ │ │ ├── Steven_Wells.jpg │ │ │ └── no_picture.jpg │ └── template │ │ └── dotnet-mssql-persistent.json ├── Snapshot Debugging Quick Start │ ├── AZR09- Snapshot Debugging Quick Start.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ └── 024.png │ ├── readme.md │ └── src │ │ └── MyCompany.Visitors │ │ ├── CodeCoverage.runsettings │ │ ├── Common │ │ ├── MyCompany.Common.CrossCutting.dll │ │ ├── MyCompany.Common.Notification.dll │ │ └── MyCompany.Common.Security.dll │ │ ├── CommonAssemblyInfo.cs │ │ ├── CustomCodeAnalysisDictionary.xml │ │ ├── MyCompany.Visitors.Data │ │ ├── App.config │ │ ├── CustomCodeAnalysisDictionary.xml │ │ ├── GlobalSuppressions.cs │ │ ├── Infrastructure │ │ │ ├── Conventions │ │ │ │ ├── CLRDateTimeToSqlDateTime2.cs │ │ │ │ └── MaxStringLengthConvention.cs │ │ │ ├── Initializers │ │ │ │ └── MyCompanyContextInitializer.cs │ │ │ ├── Interceptors │ │ │ │ └── ConnectionBreakInterceptor.cs │ │ │ ├── Mapping │ │ │ │ ├── EmployeeEntityTypeConfigurator.cs │ │ │ │ ├── EmployeePictureEntityTypeConfiguration.cs │ │ │ │ ├── TeamEntityTypeConfigurator.cs │ │ │ │ ├── VisitEntityTypeConfiguration.cs │ │ │ │ └── VisitorsEntityTypeConfigurator.cs │ │ │ └── MyCompanyDbConfiguration.cs │ │ ├── MyCompany.Visitors.Data.csproj │ │ ├── MyCompanyContext.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── CommonAssemblyInfo.cs │ │ ├── Repositories │ │ │ ├── EmployeePictureRepository.cs │ │ │ ├── EmployeeRepository.cs │ │ │ ├── IEmployeePictureRepository.cs │ │ │ ├── IEmployeeRepository.cs │ │ │ ├── ITeamRepository.cs │ │ │ ├── IVisitRepository.cs │ │ │ ├── IVisitorPictureRepository.cs │ │ │ ├── IVisitorRepository.cs │ │ │ ├── TeamRepository.cs │ │ │ ├── VisitRepository.cs │ │ │ ├── VisitorPictureRepository.cs │ │ │ └── VisitorRepository.cs │ │ └── packages.config │ │ ├── MyCompany.Visitors.Model │ │ ├── CrmData.cs │ │ ├── CustomCodeAnalysisDictionary.xml │ │ ├── Employee.cs │ │ ├── EmployeePicture.cs │ │ ├── IssuingAuthorityKey.cs │ │ ├── MyCompany.Visitors.Model.csproj │ │ ├── PictureType.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── CommonAssemblyInfo.cs │ │ ├── Question.cs │ │ ├── Team.cs │ │ ├── Visit.cs │ │ ├── VisitStatus.cs │ │ ├── Visitor.cs │ │ └── VisitorPicture.cs │ │ ├── MyCompany.Visitors.Server.sln │ │ └── MyCompany.Visitors.Web │ │ ├── App │ │ ├── config.js │ │ ├── durandal │ │ │ ├── amd │ │ │ │ ├── almond-custom.js │ │ │ │ ├── optimizer.exe │ │ │ │ ├── r.js │ │ │ │ ├── require.js │ │ │ │ └── text.js │ │ │ ├── app.js │ │ │ ├── composition.js │ │ │ ├── events.js │ │ │ ├── http.js │ │ │ ├── messageBox.html │ │ │ ├── messageBox.js │ │ │ ├── modalDialog.js │ │ │ ├── plugins │ │ │ │ └── router.js │ │ │ ├── system.js │ │ │ ├── transitions │ │ │ │ └── entrance.js │ │ │ ├── viewEngine.js │ │ │ ├── viewLocator.js │ │ │ ├── viewModel.js │ │ │ ├── viewModelBinder.js │ │ │ └── widget.js │ │ ├── main.js │ │ ├── services │ │ │ ├── communicator.js │ │ │ ├── context.js │ │ │ ├── dataservice.js │ │ │ ├── enums.js │ │ │ ├── logger.js │ │ │ ├── model.js │ │ │ ├── navigation.js │ │ │ └── notifications.js │ │ ├── viewmodels │ │ │ ├── base.js │ │ │ ├── cropImageWizard.js │ │ │ ├── shell.js │ │ │ ├── user.js │ │ │ ├── viewModels.js │ │ │ ├── visitDetail.js │ │ │ ├── visitForm.js │ │ │ ├── visitorDetail.js │ │ │ ├── visitorForm.js │ │ │ ├── visitors.js │ │ │ └── visits.js │ │ └── views │ │ │ ├── cropImageWizard.html │ │ │ ├── loading.html │ │ │ ├── nav.html │ │ │ ├── pagination.html │ │ │ ├── shell.html │ │ │ ├── user.html │ │ │ ├── visitDetail.html │ │ │ ├── visitForm.html │ │ │ ├── visitorDetail.html │ │ │ ├── visitorForm.html │ │ │ ├── visitors.html │ │ │ └── visits.html │ │ ├── App_Data │ │ └── BodyPart_72b5a3f4-7038-4087-9403-d361ca70af80 │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── DependencyConfig.cs │ │ ├── FilterConfig.cs │ │ ├── FormatConfig.cs │ │ ├── IdentityConfig.cs │ │ ├── RouteConfig.cs │ │ ├── Startup.Auth.cs │ │ ├── Startup.SignalR.cs │ │ └── WebApiConfig.cs │ │ ├── Connected Services │ │ └── Application Insights │ │ │ └── ConnectedService.json │ │ ├── Content │ │ ├── Site.css │ │ ├── Variables.css │ │ ├── Visitors.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap.css │ │ ├── bootstrap │ │ │ ├── bootstrap.css │ │ │ └── images │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── icon.png │ │ ├── durandal.css │ │ ├── faq.css │ │ ├── ie10mobile.css │ │ ├── images │ │ │ ├── arrow_time.png │ │ │ ├── border-anim-h.gif │ │ │ ├── border-anim-v.gif │ │ │ ├── border-h.gif │ │ │ ├── border-v.gif │ │ │ ├── cancel.png │ │ │ ├── clock-button.png │ │ │ ├── clock_pending.png │ │ │ ├── close.png │ │ │ ├── delete-icon.png │ │ │ ├── edit-icon.png │ │ │ ├── edit.png │ │ │ ├── info.png │ │ │ ├── last-visit.png │ │ │ ├── logo.png │ │ │ ├── lync-ico.png │ │ │ ├── no-photo-big.png │ │ │ ├── no-photo.jpg │ │ │ ├── refresh.png │ │ │ ├── search.png │ │ │ ├── visitor-icons.png │ │ │ ├── visitor_.png │ │ │ └── visits-icons.png │ │ ├── imgareaselect-animated.css │ │ ├── list.css │ │ ├── list.less │ │ ├── messageBox.less │ │ ├── messagebox.css │ │ ├── select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ ├── site.less │ │ ├── themes │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ └── jquery.ui.tooltip.min.css │ │ ├── toastr.css │ │ ├── toastr.less │ │ ├── variables.less │ │ ├── visitDetail.css │ │ ├── visitDetail.less │ │ ├── visitForm.css │ │ ├── visitForm.less │ │ ├── visitorDetail.less │ │ ├── visitorForm.css │ │ ├── visitorForm.less │ │ ├── visitordetail.css │ │ ├── visitors.less │ │ ├── visits.css │ │ └── visits.less │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── EmployeesController.cs │ │ ├── ErrorController.cs │ │ ├── HomeController.cs │ │ ├── QuestionsController.cs │ │ ├── SecurityController.cs │ │ ├── VisitorPicturesController.cs │ │ ├── VisitorsController.cs │ │ └── VisitsController.cs │ │ ├── CustomCodeAnalysisDictionary.xml │ │ ├── ErrorHandler │ │ ├── AiExceptionLogger.cs │ │ └── AiHandleErrorAttribute.cs │ │ ├── FakeImages │ │ ├── Adam Barr - small.jpg │ │ ├── Adam Barr.jpg │ │ ├── Adriana Bors - small.jpg │ │ ├── Adriana Bors.jpg │ │ ├── Andrew Davis - small.jpg │ │ ├── Andrew Davis.jpg │ │ ├── Beth Massi - small.jpg │ │ ├── Beth Massi.jpg │ │ ├── Brandon Bray - small.jpg │ │ ├── Brandon Bray.jpg │ │ ├── Brian Harry - small.jpg │ │ ├── Brian Harry.jpg │ │ ├── Brian Keller - small.jpg │ │ ├── Brian Keller.jpg │ │ ├── Brian Moore - small.jpg │ │ ├── Brian Moore.jpg │ │ ├── Carlos Zimmermann - small.jpg │ │ ├── Carlos Zimmermann.jpg │ │ ├── Carole Poland - small.jpg │ │ ├── Carole Poland.jpg │ │ ├── Cesar de_la_Torre - small.jpg │ │ ├── Cesar de_la_Torre.jpg │ │ ├── Chloe Smith - small.jpg │ │ ├── Chloe Smith.jpg │ │ ├── Christa Geller - small.jpg │ │ ├── Christa Geller.jpg │ │ ├── Christen Anderson - small.jpg │ │ ├── Christen Anderson.jpg │ │ ├── Craig Kitterman - small.jpg │ │ ├── Craig Kitterman.jpg │ │ ├── Cristina Potra - small.jpg │ │ ├── Cristina Potra.jpg │ │ ├── David Alexander - small.jpg │ │ ├── David Alexander.jpg │ │ ├── David Carmona - small.jpg │ │ ├── David Carmona.jpg │ │ ├── David Salgado - small.jpg │ │ ├── David Salgado.jpg │ │ ├── Dmitry Lyalin - small.jpg │ │ ├── Dmitry Lyalin.jpg │ │ ├── Dorothy White - small.jpg │ │ ├── Dorothy White.jpg │ │ ├── Ed Blankenship - small.jpg │ │ ├── Ed Blankenship.jpg │ │ ├── Erich Gamma - small.jpg │ │ ├── Erich Gamma.jpg │ │ ├── Evelyn Padrino - small.jpg │ │ ├── Evelyn Padrino.jpg │ │ ├── Garth Fort - small.jpg │ │ ├── Garth Fort.jpg │ │ ├── Habib Heydarian - small.jpg │ │ ├── Habib Heydarian.jpg │ │ ├── Jay Schmelzer - small.jpg │ │ ├── Jay Schmelzer.jpg │ │ ├── Jim Nakashima - small.jpg │ │ ├── Jim Nakashima.jpg │ │ ├── Josh Bailey - small.jpg │ │ ├── Josh Bailey.jpg │ │ ├── Matt Mostad - small.jpg │ │ ├── Matt Mostad.jpg │ │ ├── Mitra Azizirad - small.jpg │ │ ├── Mitra Azizirad.jpg │ │ ├── Nicole Herskowitz - small.jpg │ │ ├── Nicole Herskowitz.jpg │ │ ├── Orville McDonald - small.jpg │ │ ├── Orville McDonald.jpg │ │ ├── Phil Webb - small.jpg │ │ ├── Phil Webb.jpg │ │ ├── Rob Caron - small.jpg │ │ ├── Rob Caron.jpg │ │ ├── Robin Counts - small.jpg │ │ ├── Robin Counts.jpg │ │ ├── S. Somasegar - small.jpg │ │ ├── S. Somasegar.jpg │ │ ├── Scott Guthrie - small.jpg │ │ ├── Scott Guthrie.jpg │ │ ├── Scott Hanselman - small.jpg │ │ ├── Scott Hanselman.jpg │ │ ├── Scott Hunter - small.jpg │ │ ├── Scott Hunter.jpg │ │ ├── Scott Woodgate - small.jpg │ │ ├── Scott Woodgate.jpg │ │ ├── Sean Laberee - small.jpg │ │ ├── Sean Laberee.jpg │ │ ├── Thomas Andersen - small.jpg │ │ ├── Thomas Andersen.jpg │ │ ├── Violeta Arroyo - small.jpg │ │ └── Violeta Arroyo.jpg │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Hubs │ │ └── VisitorsNotificationHub.cs │ │ ├── Infrastructure │ │ ├── Cache │ │ │ └── WebApiOutputCacheAttribute.cs │ │ ├── ErrorHandling │ │ │ └── ExceptionHandlingAttribute.cs │ │ ├── IoC │ │ │ └── UnityDependencyResolver.cs │ │ └── Security │ │ │ ├── CustomJwtSecurityTokenHandler.cs │ │ │ ├── FixedWSFederationAuthenticationModule.cs │ │ │ ├── ISecurityHelper.cs │ │ │ ├── MyCompanyAuthorizationAttribute.cs │ │ │ └── SecurityHelper.cs │ │ ├── Models │ │ └── ImageCrop.cs │ │ ├── MyCompany.Visitors.Web.csproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── CommonAssemblyInfo.cs │ │ ├── Scripts │ │ ├── _references.js │ │ ├── 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-ui-1.10.3.js │ │ ├── jquery-ui-1.10.3.min.js │ │ ├── jquery.dotdotdot-1.5.9.js │ │ ├── jquery.imgareaselect.js │ │ ├── jquery.signalR-2.0.3.js │ │ ├── jquery.signalR-2.0.3.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── knockout-2.2.1.debug.js │ │ ├── knockout-2.2.1.js │ │ ├── knockout.bindings.js │ │ ├── knockout.mapping-latest.debug.js │ │ ├── knockout.mapping-latest.js │ │ ├── knockout.validation.debug.js │ │ ├── knockout.validation.js │ │ ├── mainLayout.js │ │ ├── modernizr-2.6.2.js │ │ ├── moment.js │ │ ├── moment.min.js │ │ ├── sammy-0.7.4.js │ │ ├── sammy-0.7.4.min.js │ │ └── toastr.js │ │ ├── Startup.cs │ │ ├── Utils │ │ └── SingleTenantIssuerNameRegistry.cs │ │ ├── Views │ │ ├── Error │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── _splash.cshtml │ │ ├── Questions │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ └── packages.config ├── StorSimple Data Manager │ ├── AZR08 - StorSimple Data Manager.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ └── 025.png │ ├── readme.md │ └── src │ │ ├── DataTransformationApp.zip │ │ └── Trigger-DataTransformation-Job.ps1 ├── U-SQL │ └── Gaining insights with U-SQL at scale.docx ├── Use Mobile Center to quickly get the insights that your app users will not tell you │ ├── DEV04 - Use Mobile Center to quickly get the insights that your app users will not tell you.docx │ ├── images │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ └── 019.png │ └── readme.md └── Zipkin-Azure │ ├── Demo_Services - Uninstrumented │ ├── DemoZipkinAppInisghts.sln │ ├── WcfService1 │ │ ├── DemoService.svc │ │ ├── DemoService.svc.cs │ │ ├── IDemoService.cs │ │ ├── MyLogger.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Utilities.cs │ │ ├── WcfService1.csproj │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ └── WpfAppClient │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MyLogger.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Utilities.cs │ │ ├── WpfAppClient.csproj │ │ └── packages.config │ ├── README.md │ └── hands-on-lab-ZipkinAzureAPI.docx ├── README.md └── SECURITY.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/001.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/002.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/003.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/004.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/005.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/006.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/007.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/008.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/009.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/010.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/011.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/images/012.png -------------------------------------------------------------------------------- /Labs/ASP.NET Startup, Configuration, and Middleware/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/ASP.NET Startup, Configuration, and Middleware/readme.md -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/readme.md -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/.gitignore -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/CONTRIBUTING.md -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/LICENSE -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/README.md -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Global.asax -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Icon.png -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Startup.cs -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/Web.config -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp-OpenIDConnect-DotNet/favicon.ico -------------------------------------------------------------------------------- /Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Add Azure AD Sign-In to a ASP.NET App/src/WebApp.sln -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/AZR03 - Azure Active Directory B2C.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/AZR03 - Azure Active Directory B2C.docx -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/001.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/002.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/003.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/004.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/005.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/006.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/007.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/008.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/009.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/010.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/011.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/012.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/013.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/014.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/015.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/016.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/017.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/018.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/019.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/020.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/021.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/images/022.png -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/readme.md -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/.gitignore -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/CONTRIBUTING.md -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/LICENSE -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/README.md -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/AzureAdB2COptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/AzureAdB2COptions.cs -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/Program.cs -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/Startup.cs -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/appsettings.json -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/bower.json -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/bundleconfig.json -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIDConnect-DotNet/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Azure Active Directory B2C/src/WebApp-OpenIdConnect-DotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Active Directory B2C/src/WebApp-OpenIdConnect-DotNet.sln -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/AZR06 - Azure CLI Quick Start.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/AZR06 - Azure CLI Quick Start.docx -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/001.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/002.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/003.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/004.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/005.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/006.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/007.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/008.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/009.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/010.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/011.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/012.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/013.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/images/014.png -------------------------------------------------------------------------------- /Labs/Azure CLI Quick Start/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure CLI Quick Start/readme.md -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/README.md -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/deployment/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/deployment/azuredeploy.json -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/50_results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/50_results.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/DocumentExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/DocumentExplorer.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/QueryExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/QueryExplorer.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/ScriptExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/ScriptExplorer.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/azure_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/azure_deploy.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/azure_deploy_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/azure_deploy_output.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/between_filter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/between_filter.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/central_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/central_us.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/concurrency.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/concurrency.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/data-saved.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/data-saved.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/date_formatted.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/date_formatted.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/filter1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/filter1.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/filter2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/filter2.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/filter3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/filter3.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/filter4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/filter4.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/filter5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/filter5.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/home_controller.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/home_controller.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/home_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/home_page.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/id_error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/id_error.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/id_filter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/id_filter.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/id_results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/id_results.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/insert-data.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/insert-data.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/join.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/join.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/join2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/join2.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/no_results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/no_results.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/north_europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/north_europe.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/order_by.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/order_by.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/people-result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/people-result.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/product-result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/product-result.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/projection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/projection.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/projection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/projection2.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/select_from_collection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/select_from_collection.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/select_from_logs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/select_from_logs.PNG -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/southeast_asia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/southeast_asia.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/top_1.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/images/west_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/images/west_us.png -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab.sln -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Content/Site.css -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Content/bootstrap.css -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Global.asax -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Global.asax.cs -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Models/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Models/HomeViewModel.cs -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Models/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Models/QueryModel.cs -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/jquery-3.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/jquery-3.1.1.js -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/respond.js -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/respond.min.js -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/tryout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/tryout.js -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/vs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Scripts/vs/loader.js -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Seed/Tweets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Seed/Tweets.json -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Views/Web.config -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Web.Debug.config -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Web.Release.config -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/Web.config -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/favicon.ico -------------------------------------------------------------------------------- /Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Cosmos DB/src/Microsoft.CodeChallenges.CosmosDB.Lab/packages.config -------------------------------------------------------------------------------- /Labs/Azure Database for MySQL/For Github/MySQL-QSC-hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Database for MySQL/For Github/MySQL-QSC-hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Azure Database for MySQL/MySQL-QSC-hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Database for MySQL/MySQL-QSC-hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Azure Database for PostgreSQL/1. Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Database for PostgreSQL/1. Intro.md -------------------------------------------------------------------------------- /Labs/Azure Database for PostgreSQL/2. Lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Database for PostgreSQL/2. Lab.md -------------------------------------------------------------------------------- /Labs/Azure Database for PostgreSQL/3. Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Database for PostgreSQL/3. Conclusion.md -------------------------------------------------------------------------------- /Labs/Azure Functions/AZR01 - Azure Functions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/AZR01 - Azure Functions.docx -------------------------------------------------------------------------------- /Labs/Azure Functions/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/001.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/002.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/003.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/004.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/005.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/006.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/007.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/008.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/009.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/010.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/011.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/012.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/013.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/014.png -------------------------------------------------------------------------------- /Labs/Azure Functions/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/images/015.png -------------------------------------------------------------------------------- /Labs/Azure Functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Functions/readme.md -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/Data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/Data/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/Lab03/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/Lab03/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/Lab03/SaleTransactions1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/Lab03/SaleTransactions1.csv -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/Lab03/SaleTransactions2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/Data/sparklabs/Lab03/SaleTransactions2.csv -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/Notebooks/Final+Lab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/Notebooks/Final+Lab.ipynb -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/README.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/README.docx -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image1.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image10.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image11.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image12.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image13.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image2.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image3.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image4.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image5.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image6.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image7.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image8.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/media/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/media/image9.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/readme.docx -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/deployment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/deployment/readme.md -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/hands-on-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/hands-on-lab.md -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/BookSalesPrediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/BookSalesPrediction.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/JupyterNotebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/JupyterNotebooks.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/Jupyter_FoodInspection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/Jupyter_FoodInspection.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/Sc1DataVisualize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/Sc1DataVisualize.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/Sc1ModelVisualize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/Sc1ModelVisualize.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/Sc2DataVisualize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/Sc2DataVisualize.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/Sc2ModelVisualize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/Sc2ModelVisualize.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/Storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/Storage.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/blob.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/images/uploadweblogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/images/uploadweblogs.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/media/image1.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/media/image2.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/media/image3.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/media/image4.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/media/image5.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/media/image6.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/DataScienceLab/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/DataScienceLab/readme.md -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/Data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/Data/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/Data/hadooplabs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/Data/hadooplabs/.DS_Store -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/Data/hadooplabs/Lab1/weblogs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/Data/hadooplabs/Lab1/weblogs.csv -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/README.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/README.docx -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image1.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image2.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image3.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image4.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image5.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image6.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/media/image7.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/readme.docx -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/deployment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/deployment/readme.md -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/hands-on-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/hands-on-lab.md -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/BookSalesPrediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/BookSalesPrediction.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/HiveViews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/HiveViews.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/HiveVisualExplain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/HiveVisualExplain.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/Sc1WhereClauses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/Sc1WhereClauses.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/Sc2TopSellingBooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/Sc2TopSellingBooks.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/Storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/Storage.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/blob.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/image1.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/image2.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/image3.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/image4.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/images/uploadweblogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/images/uploadweblogs.png -------------------------------------------------------------------------------- /Labs/Azure HDInsight/HiveLab/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure HDInsight/HiveLab/readme.md -------------------------------------------------------------------------------- /Labs/Azure SQL Database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/.gitignore -------------------------------------------------------------------------------- /Labs/Azure SQL Database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/README.md -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/azuredeploy.json -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/0_master_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/0_master_prepare.sql -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/1_head_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/1_head_prepare.sql -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/2_products_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/2_products_prepare.sql -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/3_order_shard_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/3_order_shard_prepare.sql -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/4_insert_customer_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/4_insert_customer_orders.sql -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/README.md -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/App.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/Extract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/Extract.csproj -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/Program.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Extract/packages.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/App.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/Models.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/Prepare.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/Prepare.csproj -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/Program.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/Prepare/packages.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/ShardMapPrep/ShardMapPrep.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/ShardMapPrep/ShardMapPrep.sln -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/order details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/order details.json -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/database/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/database/orders.json -------------------------------------------------------------------------------- /Labs/Azure SQL Database/deployment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/deployment/readme.md -------------------------------------------------------------------------------- /Labs/Azure SQL Database/hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Azure SQL Database/hands-on-lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/hands-on-lab.html -------------------------------------------------------------------------------- /Labs/Azure SQL Database/hands-on-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/hands-on-lab.md -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/000-select-scenario-1-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/000-select-scenario-1-controller.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/005-navigate-to-scenario-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/005-navigate-to-scenario-1.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/010-modify-scenario-1-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/010-modify-scenario-1-query.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/015-scenario-1-join-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/015-scenario-1-join-query.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/020-select-scenario-2-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/020-select-scenario-2-controller.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/025-scenario-2-initial-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/025-scenario-2-initial-query.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/030-scenario-2-aggregate-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/030-scenario-2-aggregate-query.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/035-select-scenario-3-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/035-select-scenario-3-controller.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/040-scenario-3-create-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/040-scenario-3-create-button.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/045-scenario-3-create-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/045-scenario-3-create-success.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/050-scenario-3-customer-order-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/050-scenario-3-customer-order-count.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/img/055-scenario-3-prevent-transaction-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/img/055-scenario-3-prevent-transaction-commit.png -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/Azure SQL DB Lab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/Azure SQL DB Lab.sln -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Config.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Content/Site.css -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Content/bootstrap.css -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Controllers/Scenario1Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Controllers/Scenario1Controller.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Controllers/Scenario2Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Controllers/Scenario2Controller.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Controllers/Scenario3Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Controllers/Scenario3Controller.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Global.asax -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Global.asax.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Helpers/ResultRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Helpers/ResultRow.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Helpers/ResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Helpers/ResultSet.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Helpers/ResultsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Helpers/ResultsHelper.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Helpers/ResultsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Helpers/ResultsViewModel.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/LabWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/LabWeb.csproj -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Scripts/respond.js -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Scenario1/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Scenario1/Index.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Scenario2/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Scenario2/Index.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Scenario3/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Scenario3/Index.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Shared/ResultsView.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Shared/ResultsView.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/Web.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Web.Debug.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Web.Release.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/Web.config -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/favicon.ico -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Labs/Azure SQL Database/src/LabWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure SQL Database/src/LabWeb/packages.config -------------------------------------------------------------------------------- /Labs/Azure Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/README.md -------------------------------------------------------------------------------- /Labs/Azure Search/azure-search-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/azure-search-deploy.json -------------------------------------------------------------------------------- /Labs/Azure Search/hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Azure Search/hands-on-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/hands-on-lab.md -------------------------------------------------------------------------------- /Labs/Azure Search/images/auto_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/auto_complete.png -------------------------------------------------------------------------------- /Labs/Azure Search/images/auto_suggest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/auto_suggest.png -------------------------------------------------------------------------------- /Labs/Azure Search/images/azure_search_service.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/azure_search_service.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/engineer_with_facets.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/engineer_with_facets.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/first_engineer_search.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/first_engineer_search.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/jobs_lab_azure_search1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/jobs_lab_azure_search1.png -------------------------------------------------------------------------------- /Labs/Azure Search/images/jobs_lab_azure_search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/jobs_lab_azure_search2.png -------------------------------------------------------------------------------- /Labs/Azure Search/images/jobs_lab_azure_search3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/jobs_lab_azure_search3.png -------------------------------------------------------------------------------- /Labs/Azure Search/images/kownsil_search.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/kownsil_search.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/map_filter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/map_filter.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/map_results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/map_results.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/map_results_raduis.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/map_results_raduis.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/second_enginer_search.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/second_enginer_search.PNG -------------------------------------------------------------------------------- /Labs/Azure Search/images/synonym_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/images/synonym_match.png -------------------------------------------------------------------------------- /Labs/Azure Search/readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/readme.docx -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab.sln -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/App.xaml -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/App.xaml.cs -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Package.appxmanifest -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/MainPage.xaml -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/Search.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/Search.xaml -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/Search.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/Views/Search.xaml.cs -------------------------------------------------------------------------------- /Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/src/Microsoft.CodeChallenges.AzureSearch.Lab/project.json -------------------------------------------------------------------------------- /Labs/Azure Search/utilities/Microsoft.CodeChallenge.AzureSearch.DataSeed/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/utilities/Microsoft.CodeChallenge.AzureSearch.DataSeed/App.config -------------------------------------------------------------------------------- /Labs/Azure Search/utilities/Microsoft.CodeChallenge.AzureSearch.DataSeed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/utilities/Microsoft.CodeChallenge.AzureSearch.DataSeed/Program.cs -------------------------------------------------------------------------------- /Labs/Azure Search/utilities/Microsoft.CodeChallenges.AzureSearch.DataSeed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Search/utilities/Microsoft.CodeChallenges.AzureSearch.DataSeed.sln -------------------------------------------------------------------------------- /Labs/Azure Stack/AZR07 - Azure Stack.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/AZR07 - Azure Stack.docx -------------------------------------------------------------------------------- /Labs/Azure Stack/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/001.png -------------------------------------------------------------------------------- /Labs/Azure Stack/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/002.png -------------------------------------------------------------------------------- /Labs/Azure Stack/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/003.png -------------------------------------------------------------------------------- /Labs/Azure Stack/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/004.png -------------------------------------------------------------------------------- /Labs/Azure Stack/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/005.png -------------------------------------------------------------------------------- /Labs/Azure Stack/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/006.png -------------------------------------------------------------------------------- /Labs/Azure Stack/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/images/007.png -------------------------------------------------------------------------------- /Labs/Azure Stack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/readme.md -------------------------------------------------------------------------------- /Labs/Azure Stack/src/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Azure Stack/src/azuredeploy.json -------------------------------------------------------------------------------- /Labs/BotFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/BotFramework/README.md -------------------------------------------------------------------------------- /Labs/BotFramework/hands-on-lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/BotFramework/hands-on-lab.docx -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/001.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/002.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/003.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/004.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/005.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/006.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/007.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/008.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/009.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/010.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/images/011.png -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/readme.md -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/Droid/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/Droid/app.config -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/Droid/packages.config -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/Info.plist -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/Main.cs -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/app.config -------------------------------------------------------------------------------- /Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build Smarter Apps with Xamarin & the Intelligent Cloud/src/iOS/packages.config -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/001.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/002.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/003.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/004.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/005.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/006.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/007.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/008.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/009.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/010.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/011.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/images/012.png -------------------------------------------------------------------------------- /Labs/Build a simple API with ASP.NET Core/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build a simple API with ASP.NET Core/readme.md -------------------------------------------------------------------------------- /Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/001.png -------------------------------------------------------------------------------- /Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/002.png -------------------------------------------------------------------------------- /Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/003.png -------------------------------------------------------------------------------- /Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build and Test, See how Mobile Center helps you ship apps faster/images/004.png -------------------------------------------------------------------------------- /Labs/Build and Test, See how Mobile Center helps you ship apps faster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Build and Test, See how Mobile Center helps you ship apps faster/readme.md -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/001.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/002.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/003.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/004.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/005.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/006.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/007.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/008.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/009.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/010.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/011.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/012.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/images/013.png -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/readme.md -------------------------------------------------------------------------------- /Labs/Building Your First Mobile App for iOS, Android, and Windows/src/FirstApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Building Your First Mobile App for iOS, Android, and Windows/src/FirstApp.sln -------------------------------------------------------------------------------- /Labs/Continuous Deployment of ASP.NET Core Websites to Azure with VSTS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Continuous Deployment of ASP.NET Core Websites to Azure with VSTS/readme.md -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/001.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/002.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/003.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/004.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/005.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/006.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/007.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/008.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/009.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/010.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/011.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/012.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/013.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/014.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/015.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/016.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/017.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/images/018.png -------------------------------------------------------------------------------- /Labs/Create Your First ASP.NET Core Application with MVC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Create Your First ASP.NET Core Application with MVC/readme.md -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/001.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/002.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/003.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/004.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/005.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/006.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/007.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/008.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/009.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/010.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/011.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/012.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/013.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/014.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/015.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/016.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/017.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/018.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/019.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/020.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/021.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/022.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/023.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/images/024.png -------------------------------------------------------------------------------- /Labs/Deploying Docker Container Apps to Azure App Services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Deploying Docker Container Apps to Azure App Services/readme.md -------------------------------------------------------------------------------- /Labs/Getting Started with Application Insights for your Azure Web Service/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Application Insights for your Azure Web Service/readme.md -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/001.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/002.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/003.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/004.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/005.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/006.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/007.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/008.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/009.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/010.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/011.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/012.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/013.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/014.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/015.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/016.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/017.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/018.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/019.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/020.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/021.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/022.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/023.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/024.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/025.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/026.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/027.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/028.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/029.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/030.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/031.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/032.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/033.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/034.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/035.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/images/036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/images/036.png -------------------------------------------------------------------------------- /Labs/Getting Started with Git in Visual Studio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Git in Visual Studio/readme.md -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/001.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/002.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/003.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/004.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/005.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/006.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/007.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/008.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/009.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/010.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/011.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/012.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/images/013.png -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/readme.md -------------------------------------------------------------------------------- /Labs/Getting Started with Mobile Development for WPF Developers/src/FirstApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Getting Started with Mobile Development for WPF Developers/src/FirstApp.sln -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/001.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/002.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/003.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/004.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/005.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/006.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/007.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/008.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/009.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/010.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/011.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/012.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/013.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/014.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/015.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/016.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/017.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/018.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/019.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/020.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/021.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/022.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/023.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/024.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/025.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/images/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/images/026.png -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/readme.md -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Content/Site.css -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Content/TextFile1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Global.asax -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Global.asax.cs -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Models/Movie.cs -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/MvcMovie.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/MvcMovie.csproj -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Scripts/respond.js -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Startup.cs -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Views/Web.config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Web.Debug.config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Web.Release.config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/Web.config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/favicon.ico -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovie/packages.config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovieRTM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/MvcMovieRTM.sln -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/Test/Test.csproj -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/Test/app.config -------------------------------------------------------------------------------- /Labs/Live Unit Testing, Refactoring, and Code Style/src/Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Live Unit Testing, Refactoring, and Code Style/src/Test/packages.config -------------------------------------------------------------------------------- /Labs/Logic Apps/AZR02 - Logic Apps.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/AZR02 - Logic Apps.docx -------------------------------------------------------------------------------- /Labs/Logic Apps/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/001.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/002.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/003.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/004.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/005.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/006.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/007.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/008.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/009.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/010.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/011.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/012.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/013.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/014.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/015.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/016.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/017.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/018.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/019.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/020.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/021.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/022.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/023.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/024.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/025.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/026.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/027.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/028.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/029.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/030.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/031.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/032.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/033.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/034.png -------------------------------------------------------------------------------- /Labs/Logic Apps/images/035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/images/035.png -------------------------------------------------------------------------------- /Labs/Logic Apps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Logic Apps/readme.md -------------------------------------------------------------------------------- /Labs/Python-Tools-for-Visual-Studio/PythonToolsLab/PyRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Python-Tools-for-Visual-Studio/PythonToolsLab/PyRegression.py -------------------------------------------------------------------------------- /Labs/Python-Tools-for-Visual-Studio/PythonToolsLab/PythonToolsLab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Python-Tools-for-Visual-Studio/PythonToolsLab/PythonToolsLab.docx -------------------------------------------------------------------------------- /Labs/Python-Tools-for-Visual-Studio/PythonToolsLab/PythonToolsLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Python-Tools-for-Visual-Studio/PythonToolsLab/PythonToolsLab.md -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Solution/Solution.rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Solution/Solution.rproj -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Solution/Solution.rxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Solution/Solution.rxproj -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Solution/app/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Solution/app/server.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Solution/app/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Solution/app/ui.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Solution/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Solution/dependencies.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Solution/stocks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Solution/stocks.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Starter/Starter.rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Starter/Starter.rproj -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Starter/Starter.rxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Starter/Starter.rxproj -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Starter/app/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Starter/app/server.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Starter/app/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Starter/app/ui.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Starter/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Starter/dependencies.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Starter/stocks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Starter/stocks.R -------------------------------------------------------------------------------- /Labs/R-Tools-for-Visual-Studio/Stocks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/R-Tools-for-Visual-Studio/Stocks.sln -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/Lab-Scripts/01-cluster-up.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell.exe "C:\'Program Files'\MSLab-Scripts\ps1\cluster-up.ps1" -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/Lab-Scripts/02-port-forward.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell.exe "C:\'Program Files'\MSLab-Scripts\ps1\port-forward.ps1" -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/Lab-Scripts/03-PersonDirectory-db-script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/Lab-Scripts/03-PersonDirectory-db-script.sql -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/Lab-Scripts/04-cluster-down.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell.exe "C:\'Program Files'\MSLab-Scripts\ps1\cluster-down.ps1" -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/README.md -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/dotnet-core-mssql-app.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/dotnet-core-mssql-app.sln -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/global.json -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Contexts/AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Contexts/AppContext.cs -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Models/Person.cs -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Program.cs -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/Startup.cs -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/appsettings.json -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/bower.json -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/bundleconfig.json -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/project.json -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sleep 5000 | nohup dotnet run > /dev/null 2>&1 & 3 | -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/web.config -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/_references.js -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/css/main.css -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/src/dotnet-core-mssql-app/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/SQL on Linux-Docker-OpenShift/template/dotnet-mssql-persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/SQL on Linux-Docker-OpenShift/template/dotnet-mssql-persistent.json -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/AZR09- Snapshot Debugging Quick Start.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/AZR09- Snapshot Debugging Quick Start.docx -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/001.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/002.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/003.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/004.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/005.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/006.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/007.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/008.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/009.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/010.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/011.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/012.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/013.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/014.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/015.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/016.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/017.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/018.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/019.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/020.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/021.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/022.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/023.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/images/024.png -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/readme.md -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/src/MyCompany.Visitors/CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/src/MyCompany.Visitors/CodeCoverage.runsettings -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/src/MyCompany.Visitors/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Snapshot Debugging Quick Start/src/MyCompany.Visitors/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /Labs/Snapshot Debugging Quick Start/src/MyCompany.Visitors/MyCompany.Visitors.Web/Content/faq.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | } 4 | -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/AZR08 - StorSimple Data Manager.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/AZR08 - StorSimple Data Manager.docx -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/001.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/002.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/003.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/004.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/005.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/006.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/007.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/008.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/009.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/010.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/011.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/012.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/013.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/014.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/015.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/016.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/017.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/018.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/019.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/020.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/021.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/022.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/023.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/024.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/images/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/images/025.png -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/readme.md -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/src/DataTransformationApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/src/DataTransformationApp.zip -------------------------------------------------------------------------------- /Labs/StorSimple Data Manager/src/Trigger-DataTransformation-Job.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/StorSimple Data Manager/src/Trigger-DataTransformation-Job.ps1 -------------------------------------------------------------------------------- /Labs/U-SQL/Gaining insights with U-SQL at scale.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/U-SQL/Gaining insights with U-SQL at scale.docx -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/DemoZipkinAppInisghts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/DemoZipkinAppInisghts.sln -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/DemoService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/DemoService.svc -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/DemoService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/DemoService.svc.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/IDemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/IDemoService.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/MyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/MyLogger.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Utilities.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/WcfService1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/WcfService1.csproj -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Web.Debug.config -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Web.Release.config -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/Web.config -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WcfService1/packages.config -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/App.config -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/App.xaml -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/App.xaml.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/MainWindow.xaml -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/MyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/MyLogger.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/Utilities.cs -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/WpfAppClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/WpfAppClient.csproj -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/Demo_Services - Uninstrumented/WpfAppClient/packages.config -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/README.md -------------------------------------------------------------------------------- /Labs/Zipkin-Azure/hands-on-lab-ZipkinAzureAPI.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/Labs/Zipkin-Azure/hands-on-lab-ZipkinAzureAPI.docx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-challenges/HEAD/SECURITY.md --------------------------------------------------------------------------------