├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .vscode └── settings.json ├── Allfiles ├── .gitignore ├── Demos │ └── .gitignore ├── Exercises │ ├── .gitignore │ └── 09-cosmosdb-create-resources-sdk │ │ └── finish │ │ ├── Program.cs │ │ └── cosmos.csproj └── Labs │ ├── 10 │ ├── Solution │ │ ├── MessagePublisher │ │ │ ├── MessagePublisher.csproj │ │ │ └── Program.cs │ │ └── MessageReader │ │ │ ├── MessageReader.csproj │ │ │ └── Program.cs │ └── Starter │ │ ├── MessagePublisher │ │ └── .gitignore │ │ └── MessageReader │ │ └── .gitignore │ ├── 11 │ ├── Solution │ │ └── Api │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SimpleApi.csproj │ │ │ ├── SimpleApi.http │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── Starter │ │ └── Api │ │ └── .gitignore │ ├── 01 │ ├── Solution │ │ └── .gitignore │ └── Starter │ │ ├── API │ │ ├── API.sln │ │ ├── Api.csproj │ │ ├── Controllers │ │ │ └── ImagesController.cs │ │ ├── Options.cs │ │ ├── Program.cs │ │ ├── api.zip │ │ └── appsettings.json │ │ ├── Images │ │ ├── banhmi.jpg │ │ ├── blt.jpg │ │ ├── burger.jpg │ │ ├── grilledcheese.jpg │ │ ├── sub.jpg │ │ └── veggie.jpg │ │ └── Web │ │ ├── Options.cs │ │ ├── Pages │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ │ ├── Program.cs │ │ ├── Web.csproj │ │ ├── Web.sln │ │ ├── appsettings.json │ │ └── web.zip │ ├── 02 │ ├── Solution │ │ ├── func │ │ │ ├── Echo.cs │ │ │ ├── GetSettingInfo.cs │ │ │ ├── Program.cs │ │ │ ├── Recurring.cs │ │ │ ├── func.csproj │ │ │ ├── host.json │ │ │ └── local.settings.json │ │ └── settings.json │ └── Starter │ │ ├── func │ │ └── .gitignore │ │ └── settings.json │ ├── 03 │ ├── Solution │ │ └── BlobManager │ │ │ ├── BlobManager.csproj │ │ │ └── Program.cs │ └── Starter │ │ ├── BlobManager │ │ └── .gitignore │ │ └── Images │ │ ├── graph.jpg │ │ └── graph.svg │ ├── 04 │ ├── Solution │ │ └── AdventureWorks │ │ │ ├── AdventureWorks.Context │ │ │ ├── AdventureWorks.Context.csproj │ │ │ ├── AdventureWorksCosmosContext.cs │ │ │ └── Interfaces │ │ │ │ └── IAdventureWorksProductContext.cs │ │ │ ├── AdventureWorks.Models │ │ │ ├── AdventureWorks.Models.csproj │ │ │ ├── Model.cs │ │ │ └── Product.cs │ │ │ ├── AdventureWorks.Upload │ │ │ ├── AdventureWorks.Upload.csproj │ │ │ ├── AdventureWorks.Upload.sln │ │ │ ├── Program.cs │ │ │ └── models.json │ │ │ ├── AdventureWorks.Web │ │ │ ├── AdventureWorks.Web.csproj │ │ │ ├── Configuration │ │ │ │ └── Settings.cs │ │ │ ├── Pages │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Details.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ └── mountains.jpg │ │ │ └── AdventureWorks.sln │ └── Starter │ │ ├── AdventureWorks │ │ ├── AdventureWorks.Context │ │ │ ├── AdventureWorks.Context.csproj │ │ │ └── Interfaces │ │ │ │ └── IAdventureWorksProductContext.cs │ │ ├── AdventureWorks.Models │ │ │ ├── AdventureWorks.Models.csproj │ │ │ ├── Model.cs │ │ │ └── Product.cs │ │ ├── AdventureWorks.Upload │ │ │ ├── AdventureWorks.Upload.csproj │ │ │ ├── AdventureWorks.Upload.sln │ │ │ ├── Program.cs │ │ │ └── models.json │ │ ├── AdventureWorks.Web │ │ │ ├── AdventureWorks.Web.csproj │ │ │ ├── Configuration │ │ │ │ └── Settings.cs │ │ │ ├── Pages │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Details.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ └── mountains.jpg │ │ └── AdventureWorks.sln │ │ └── Images │ │ ├── awc_jersey_male.jpg │ │ ├── awc_tee_male_yellow.jpg │ │ ├── bike_lock.jpg │ │ ├── bikepump.jpg │ │ ├── clipless_pedals.jpg │ │ ├── double_headlight.jpg │ │ ├── fork.jpg │ │ ├── frame.jpg │ │ ├── frame_black.jpg │ │ ├── frame_silver.jpg │ │ ├── handlebar.jpg │ │ ├── handpump.jpg │ │ ├── hotrodbike_black.jpg │ │ ├── hotrodbike_f.jpg │ │ ├── hotrodbike_silver.jpg │ │ ├── innertube.jpg │ │ ├── julianax_r_02_blue.jpg │ │ ├── julianax_r_02_yellow.jpg │ │ ├── mb_tires.jpg │ │ ├── no_image_available.jpg │ │ ├── pedal.jpg │ │ ├── racer02_yellow_f.jpg │ │ ├── racer_black.jpg │ │ ├── racer_red.jpg │ │ ├── roadster_black.jpg │ │ ├── roadster_red.jpg │ │ ├── roadster_yellow_f.jpg │ │ ├── saddle.jpg │ │ ├── shorts_female.jpg │ │ ├── shorts_male.jpg │ │ ├── silver_chain.jpg │ │ ├── single_headlight.jpg │ │ ├── sprocket.jpg │ │ ├── street_tires.jpg │ │ ├── superlight_black.jpg │ │ ├── superlight_red.jpg │ │ ├── superlight_silver.jpg │ │ ├── tail_lights.jpg │ │ ├── tirepatch_kit.jpg │ │ ├── water_bottle.jpg │ │ ├── water_bottle_cage.jpg │ │ └── wheel.jpg │ ├── 05 │ ├── Solution │ │ ├── Dockerfile │ │ ├── Program.cs │ │ └── ipcheck.csproj │ └── Starter │ │ └── .gitignore │ ├── 06 │ ├── Solution │ │ └── OIDCClient │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ │ ├── OIDCClient.csproj │ │ │ ├── OIDCClient.sln │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ └── Starter │ │ └── OIDCClient │ │ └── .gitignore │ ├── 07 │ ├── Solution │ │ ├── func │ │ │ ├── FileParser.cs │ │ │ ├── Program.cs │ │ │ ├── func.csproj │ │ │ ├── host.json │ │ │ └── local.settings.json │ │ └── records.json │ └── Starter │ │ ├── func │ │ └── .gitignore │ │ └── records.json │ ├── 08 │ ├── Solution │ │ └── .gitignore │ └── Starter │ │ └── .gitignore │ └── 09 │ ├── Solution │ └── EventPublisher │ │ ├── EventPublisher.csproj │ │ └── Program.cs │ └── Starter │ └── EventPublisher │ └── .gitignore ├── Instructions ├── Demos │ ├── .gitignore │ └── AZ-204_lab_00.md ├── Exercises │ ├── 01-app-service-deploy-container.md │ ├── 02-app-service-deployment-slots.md │ ├── 06-functions-create-vscode-http.md │ ├── 09-comosdb-create-resources-sdk.md │ └── media │ │ ├── 01 │ │ └── create-web-app-tile.png │ │ ├── 02 │ │ └── app-service-swap-panel.png │ │ ├── 06 │ │ ├── create-resource.png │ │ ├── execute-function-local.png │ │ ├── execute-function-remote.png │ │ ├── function-deployment-complete.png │ │ ├── function-view-output.png │ │ ├── functions-sign-into-azure.png │ │ └── run-function-local.png │ │ └── 09 │ │ └── cosmos-data-explorer.png └── Labs │ ├── AZ-204_lab_01.md │ ├── AZ-204_lab_02.md │ ├── AZ-204_lab_03.md │ ├── AZ-204_lab_04.md │ ├── AZ-204_lab_05.md │ ├── AZ-204_lab_06.md │ ├── AZ-204_lab_07.md │ ├── AZ-204_lab_08.md │ ├── AZ-204_lab_09.md │ ├── AZ-204_lab_10.md │ ├── AZ-204_lab_11.md │ └── media │ ├── 10_create_sb_namespace.png │ ├── Lab01-Diagram.png │ ├── Lab01-Overview.png │ ├── Lab02-Diagram.png │ ├── Lab02-Overview.png │ ├── Lab03-Diagram.png │ ├── Lab03-Overview.png │ ├── Lab04-Diagram.png │ ├── Lab05-Diagram.png │ ├── Lab06-Diagram.png │ ├── Lab07-Diagram.png │ ├── Lab08-Diagram.png │ ├── Lab09-Diagram.png │ ├── Lab10-Diagram.png │ ├── Lab11-Diagram.png │ ├── Lab12-Diagram.png │ ├── Lab13-Diagram.png │ ├── Lab13_add_custom_domain.mp4 │ ├── Lab14-Diagram.png │ ├── Lab15-Diagram.png │ ├── az204_lab_CloudShell.png │ ├── l01_create_a_front_end_web_app.png │ ├── l01_create_a_storage_account.png │ ├── l01_create_a_web_app.png │ ├── l01_diagram.png │ ├── l02_create_a_function_app.png │ ├── l02_create_a_function_app_hosting_tab.png │ ├── l02_create_a_storage_account.png │ ├── l03_containers.png │ ├── l03_create_a_storage_account.png │ ├── l04_cosmosdb_create_summary.png │ ├── l04_storage_create_summary.png │ ├── l04_vscode_open_in_integreated_terminal.png │ ├── l05_create_a_resource_group.png │ ├── l05_create_container_instance.png │ ├── l05_create_container_instance_manual.png │ ├── l05_create_container_registry.png │ ├── l06_aad_autentication_webapp.png │ ├── l06_aad_register_mt_webapp.png │ ├── l06_aad_register_st_webapp.png │ ├── l07_add_access_policy.png │ ├── l07_add_access_policy_principal.png │ ├── l07_create_a_secret.png │ ├── l07_create_a_storage_account.png │ ├── l07_create_function_app.png │ ├── l07_create_function_app_hosting_tab.png │ ├── l07_create_key_vault.png │ ├── l08_add_echo_headers_operation.png │ ├── l08_add_set_headers_inbound_processing.png │ ├── l08_create_api_management.png │ ├── l08_create_blank_api.png │ ├── l08_create_json_definition.png │ ├── l08_get_echo_headers_design.png │ ├── l08_get_legacy_data_outbound_processing.png │ ├── l08_httpbin_get_basic_auth_response.png │ ├── l08_httpbin_get_html_try.png │ ├── l08_response_to_dynamic_data.png │ ├── l08_response_to_echo_headers.png │ ├── l08_response_to_generate_payload_fails.png │ ├── l08_response_to_generate_payload_succeeds.png │ ├── l08_response_to_get_legacy_data.png │ ├── l08_test_basic-auth_response.png │ ├── l08_test_echo_headers.png │ ├── l09_create_event_subscription.png │ ├── l09_create_topic.png │ ├── l09_create_web_app.png │ ├── l09_create_web_app_docker.png │ ├── l10_create_sb_namespace.png │ ├── l10_display_queue_with_messages_portal.png │ ├── l10_peek_queue_with_messages_explorer.png │ ├── l11_azure_web_app_metrics_portal.png │ ├── l11_create_app_insights_portal.png │ ├── l11_create_web_app_basic_portal.png │ ├── l11_create_web_app_summary_portal.png │ ├── l11_scale_web_app_choose_rules.png │ ├── l11_scale_web_app_default.png │ ├── l11_scale_web_app_rule.png │ ├── l11_web_api_insights.png │ ├── l11_web_api_insights_logs.png │ ├── l11_web_app_metrics_portal.png │ ├── l12_add_an_endpoint.png │ ├── l12_add_an_endpoint2.png │ ├── l12_add_an_endpoint3.png │ ├── l12_create_CDN_profile.png │ ├── l12_create_a_storage_account.png │ ├── l12_create_web_app.png │ ├── l12_create_web_app_docker.png │ └── lab14-docker-switch.png ├── LICENSE ├── _build.yml ├── _config.yml ├── index.md └── readme.md /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Allfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/.gitignore -------------------------------------------------------------------------------- /Allfiles/Demos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Demos/.gitignore -------------------------------------------------------------------------------- /Allfiles/Exercises/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Exercises/.gitignore -------------------------------------------------------------------------------- /Allfiles/Exercises/09-cosmosdb-create-resources-sdk/finish/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Exercises/09-cosmosdb-create-resources-sdk/finish/Program.cs -------------------------------------------------------------------------------- /Allfiles/Exercises/09-cosmosdb-create-resources-sdk/finish/cosmos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Exercises/09-cosmosdb-create-resources-sdk/finish/cosmos.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/01/Solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Solution/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/API.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/API.sln -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/Api.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/Options.cs -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/api.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/api.zip -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/API/appsettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Images/banhmi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Images/banhmi.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Images/blt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Images/blt.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Images/burger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Images/burger.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Images/grilledcheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Images/grilledcheese.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Images/sub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Images/sub.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Images/veggie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Images/veggie.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/Options.cs -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/Web.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/Web.sln -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ApiUrl": "" 3 | } -------------------------------------------------------------------------------- /Allfiles/Labs/01/Starter/Web/web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/01/Starter/Web/web.zip -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/Echo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/Echo.cs -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/GetSettingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/GetSettingInfo.cs -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/Recurring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/Recurring.cs -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/func.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/func.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/host.json -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/func/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/func/local.settings.json -------------------------------------------------------------------------------- /Allfiles/Labs/02/Solution/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Solution/settings.json -------------------------------------------------------------------------------- /Allfiles/Labs/02/Starter/func/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Starter/func/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/02/Starter/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/02/Starter/settings.json -------------------------------------------------------------------------------- /Allfiles/Labs/03/Solution/BlobManager/BlobManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/03/Solution/BlobManager/BlobManager.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/03/Solution/BlobManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/03/Solution/BlobManager/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/03/Starter/BlobManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/03/Starter/BlobManager/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/03/Starter/Images/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/03/Starter/Images/graph.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/03/Starter/Images/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/03/Starter/Images/graph.svg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Context/AdventureWorks.Context.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Context/AdventureWorks.Context.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Context/AdventureWorksCosmosContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Context/AdventureWorksCosmosContext.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Context/Interfaces/IAdventureWorksProductContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Context/Interfaces/IAdventureWorksProductContext.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Models/AdventureWorks.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Models/AdventureWorks.Models.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Models/Model.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Models/Product.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.sln -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Upload/models.json -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/AdventureWorks.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/AdventureWorks.Web.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Configuration/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Configuration/Settings.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/Startup.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/appsettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/wwwroot/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.Web/wwwroot/mountains.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Solution/AdventureWorks/AdventureWorks.sln -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Context/AdventureWorks.Context.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Context/AdventureWorks.Context.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Context/Interfaces/IAdventureWorksProductContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Context/Interfaces/IAdventureWorksProductContext.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Models/AdventureWorks.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Models/AdventureWorks.Models.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Models/Model.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Models/Product.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/AdventureWorks.Upload.sln -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Upload/models.json -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/AdventureWorks.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/AdventureWorks.Web.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Configuration/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Configuration/Settings.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Details.cshtml.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/Startup.cs -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/appsettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/wwwroot/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.Web/wwwroot/mountains.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/AdventureWorks/AdventureWorks.sln -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/awc_jersey_male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/awc_jersey_male.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/awc_tee_male_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/awc_tee_male_yellow.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/bike_lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/bike_lock.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/bikepump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/bikepump.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/clipless_pedals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/clipless_pedals.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/double_headlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/double_headlight.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/fork.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/frame.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/frame_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/frame_black.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/frame_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/frame_silver.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/handlebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/handlebar.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/handpump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/handpump.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/hotrodbike_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/hotrodbike_black.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/hotrodbike_f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/hotrodbike_f.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/hotrodbike_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/hotrodbike_silver.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/innertube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/innertube.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/julianax_r_02_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/julianax_r_02_blue.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/julianax_r_02_yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/julianax_r_02_yellow.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/mb_tires.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/mb_tires.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/no_image_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/no_image_available.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/pedal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/pedal.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/racer02_yellow_f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/racer02_yellow_f.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/racer_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/racer_black.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/racer_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/racer_red.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/roadster_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/roadster_black.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/roadster_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/roadster_red.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/roadster_yellow_f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/roadster_yellow_f.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/saddle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/saddle.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/shorts_female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/shorts_female.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/shorts_male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/shorts_male.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/silver_chain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/silver_chain.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/single_headlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/single_headlight.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/sprocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/sprocket.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/street_tires.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/street_tires.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/superlight_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/superlight_black.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/superlight_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/superlight_red.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/superlight_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/superlight_silver.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/tail_lights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/tail_lights.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/tirepatch_kit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/tirepatch_kit.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/water_bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/water_bottle.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/water_bottle_cage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/water_bottle_cage.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/04/Starter/Images/wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/04/Starter/Images/wheel.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/05/Solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/05/Solution/Dockerfile -------------------------------------------------------------------------------- /Allfiles/Labs/05/Solution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/05/Solution/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/05/Solution/ipcheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/05/Solution/ipcheck.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/05/Starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/05/Starter/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/OIDCClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/OIDCClient.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/OIDCClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/OIDCClient.sln -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Properties/launchSettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/appsettings.Development.json -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/appsettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/css/site.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/js/site.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Solution/OIDCClient/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Allfiles/Labs/06/Starter/OIDCClient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/06/Starter/OIDCClient/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/07/Solution/func/FileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Solution/func/FileParser.cs -------------------------------------------------------------------------------- /Allfiles/Labs/07/Solution/func/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Solution/func/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/07/Solution/func/func.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Solution/func/func.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/07/Solution/func/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Solution/func/host.json -------------------------------------------------------------------------------- /Allfiles/Labs/07/Solution/func/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Solution/func/local.settings.json -------------------------------------------------------------------------------- /Allfiles/Labs/07/Solution/records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Solution/records.json -------------------------------------------------------------------------------- /Allfiles/Labs/07/Starter/func/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Starter/func/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/07/Starter/records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/07/Starter/records.json -------------------------------------------------------------------------------- /Allfiles/Labs/08/Solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/08/Solution/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/08/Starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/08/Starter/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/09/Solution/EventPublisher/EventPublisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/09/Solution/EventPublisher/EventPublisher.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/09/Solution/EventPublisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/09/Solution/EventPublisher/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/09/Starter/EventPublisher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/09/Starter/EventPublisher/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/10/Solution/MessagePublisher/MessagePublisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/10/Solution/MessagePublisher/MessagePublisher.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/10/Solution/MessagePublisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/10/Solution/MessagePublisher/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/10/Solution/MessageReader/MessageReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/10/Solution/MessageReader/MessageReader.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/10/Solution/MessageReader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/10/Solution/MessageReader/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/10/Starter/MessagePublisher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/10/Starter/MessagePublisher/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/10/Starter/MessageReader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/10/Starter/MessageReader/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/11/Solution/Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Solution/Api/Program.cs -------------------------------------------------------------------------------- /Allfiles/Labs/11/Solution/Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Solution/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/11/Solution/Api/SimpleApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Solution/Api/SimpleApi.csproj -------------------------------------------------------------------------------- /Allfiles/Labs/11/Solution/Api/SimpleApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Solution/Api/SimpleApi.http -------------------------------------------------------------------------------- /Allfiles/Labs/11/Solution/Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Solution/Api/appsettings.Development.json -------------------------------------------------------------------------------- /Allfiles/Labs/11/Solution/Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Solution/Api/appsettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/11/Starter/Api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Allfiles/Labs/11/Starter/Api/.gitignore -------------------------------------------------------------------------------- /Instructions/Demos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Demos/.gitignore -------------------------------------------------------------------------------- /Instructions/Demos/AZ-204_lab_00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Demos/AZ-204_lab_00.md -------------------------------------------------------------------------------- /Instructions/Exercises/01-app-service-deploy-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/01-app-service-deploy-container.md -------------------------------------------------------------------------------- /Instructions/Exercises/02-app-service-deployment-slots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/02-app-service-deployment-slots.md -------------------------------------------------------------------------------- /Instructions/Exercises/06-functions-create-vscode-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/06-functions-create-vscode-http.md -------------------------------------------------------------------------------- /Instructions/Exercises/09-comosdb-create-resources-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/09-comosdb-create-resources-sdk.md -------------------------------------------------------------------------------- /Instructions/Exercises/media/01/create-web-app-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/01/create-web-app-tile.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/02/app-service-swap-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/02/app-service-swap-panel.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/create-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/create-resource.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/execute-function-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/execute-function-local.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/execute-function-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/execute-function-remote.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/function-deployment-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/function-deployment-complete.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/function-view-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/function-view-output.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/functions-sign-into-azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/functions-sign-into-azure.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/06/run-function-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/06/run-function-local.png -------------------------------------------------------------------------------- /Instructions/Exercises/media/09/cosmos-data-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Exercises/media/09/cosmos-data-explorer.png -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_01.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_02.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_03.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_04.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_05.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_06.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_07.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_08.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_09.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_10.md -------------------------------------------------------------------------------- /Instructions/Labs/AZ-204_lab_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/AZ-204_lab_11.md -------------------------------------------------------------------------------- /Instructions/Labs/media/10_create_sb_namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/10_create_sb_namespace.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab01-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab01-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab01-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab01-Overview.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab02-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab02-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab02-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab02-Overview.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab03-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab03-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab03-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab03-Overview.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab04-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab04-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab05-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab05-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab06-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab06-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab07-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab07-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab08-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab08-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab09-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab09-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab10-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab10-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab11-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab11-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab12-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab12-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab13-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab13-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab13_add_custom_domain.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab13_add_custom_domain.mp4 -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab14-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab14-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/Lab15-Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/Lab15-Diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/az204_lab_CloudShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/az204_lab_CloudShell.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l01_create_a_front_end_web_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l01_create_a_front_end_web_app.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l01_create_a_storage_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l01_create_a_storage_account.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l01_create_a_web_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l01_create_a_web_app.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l01_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l01_diagram.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l02_create_a_function_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l02_create_a_function_app.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l02_create_a_function_app_hosting_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l02_create_a_function_app_hosting_tab.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l02_create_a_storage_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l02_create_a_storage_account.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l03_containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l03_containers.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l03_create_a_storage_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l03_create_a_storage_account.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l04_cosmosdb_create_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l04_cosmosdb_create_summary.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l04_storage_create_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l04_storage_create_summary.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l04_vscode_open_in_integreated_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l04_vscode_open_in_integreated_terminal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l05_create_a_resource_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l05_create_a_resource_group.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l05_create_container_instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l05_create_container_instance.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l05_create_container_instance_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l05_create_container_instance_manual.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l05_create_container_registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l05_create_container_registry.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l06_aad_autentication_webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l06_aad_autentication_webapp.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l06_aad_register_mt_webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l06_aad_register_mt_webapp.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l06_aad_register_st_webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l06_aad_register_st_webapp.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_add_access_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_add_access_policy.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_add_access_policy_principal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_add_access_policy_principal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_create_a_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_create_a_secret.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_create_a_storage_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_create_a_storage_account.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_create_function_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_create_function_app.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_create_function_app_hosting_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_create_function_app_hosting_tab.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l07_create_key_vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l07_create_key_vault.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_add_echo_headers_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_add_echo_headers_operation.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_add_set_headers_inbound_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_add_set_headers_inbound_processing.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_create_api_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_create_api_management.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_create_blank_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_create_blank_api.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_create_json_definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_create_json_definition.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_get_echo_headers_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_get_echo_headers_design.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_get_legacy_data_outbound_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_get_legacy_data_outbound_processing.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_httpbin_get_basic_auth_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_httpbin_get_basic_auth_response.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_httpbin_get_html_try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_httpbin_get_html_try.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_response_to_dynamic_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_response_to_dynamic_data.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_response_to_echo_headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_response_to_echo_headers.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_response_to_generate_payload_fails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_response_to_generate_payload_fails.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_response_to_generate_payload_succeeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_response_to_generate_payload_succeeds.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_response_to_get_legacy_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_response_to_get_legacy_data.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_test_basic-auth_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_test_basic-auth_response.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l08_test_echo_headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l08_test_echo_headers.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l09_create_event_subscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l09_create_event_subscription.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l09_create_topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l09_create_topic.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l09_create_web_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l09_create_web_app.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l09_create_web_app_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l09_create_web_app_docker.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l10_create_sb_namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l10_create_sb_namespace.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l10_display_queue_with_messages_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l10_display_queue_with_messages_portal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l10_peek_queue_with_messages_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l10_peek_queue_with_messages_explorer.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_azure_web_app_metrics_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_azure_web_app_metrics_portal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_create_app_insights_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_create_app_insights_portal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_create_web_app_basic_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_create_web_app_basic_portal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_create_web_app_summary_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_create_web_app_summary_portal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_scale_web_app_choose_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_scale_web_app_choose_rules.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_scale_web_app_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_scale_web_app_default.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_scale_web_app_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_scale_web_app_rule.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_web_api_insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_web_api_insights.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_web_api_insights_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_web_api_insights_logs.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l11_web_app_metrics_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l11_web_app_metrics_portal.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_add_an_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_add_an_endpoint.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_add_an_endpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_add_an_endpoint2.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_add_an_endpoint3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_add_an_endpoint3.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_create_CDN_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_create_CDN_profile.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_create_a_storage_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_create_a_storage_account.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_create_web_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_create_web_app.png -------------------------------------------------------------------------------- /Instructions/Labs/media/l12_create_web_app_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/l12_create_web_app_docker.png -------------------------------------------------------------------------------- /Instructions/Labs/media/lab14-docker-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/Instructions/Labs/media/lab14-docker-switch.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/LICENSE -------------------------------------------------------------------------------- /_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/_build.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/index.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure/HEAD/readme.md --------------------------------------------------------------------------------