├── .devcontainer ├── dotnet │ └── devcontainer.json └── slides │ └── devcontainer.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── dotnetversionsweeper.yml │ └── marp-pages.yml ├── .gitignore ├── .markdownlint.json ├── .vscode └── settings.json ├── 01-basic-console ├── BasicConsole.csproj ├── Program.cs └── README.md ├── 02-generic-host ├── GenericHost.csproj ├── Program.cs ├── README.md └── appsettings.json ├── 03-json-config ├── JsonConfig.csproj ├── Program.cs ├── README.md └── config.json ├── 04-environment-variables ├── EnvironmentVariables.csproj ├── Program.cs ├── README.md └── config.json ├── 05-command-line-args ├── CommandLineArgs.csproj ├── Program.cs ├── README.md └── config.json ├── 06-in-memory-config ├── InMemoryConfig.csproj ├── Program.cs ├── README.md └── config.json ├── 07-user-secrets ├── Program.cs ├── README.md ├── UserSecrets.csproj └── config.json ├── 08-configuration-sections ├── ConfigurationSections.csproj ├── Program.cs ├── README.md └── config.json ├── 09-command-line-mappings ├── CommandLineMappings.csproj ├── Program.cs ├── README.md └── config.json ├── 10-key-per-file ├── KeyPerFile.csproj ├── Program.cs ├── README.md ├── config.json └── keyPerFile │ ├── Logging__KeyFile │ ├── SecretKey │ ├── environment │ └── greeting ├── 11-azure-keyvault ├── AzureKeyvault.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── appsettings.Development.json ├── appsettings.json └── setup.sh ├── 12-configuration-precedence ├── ConfigurationPrecedence.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── appsettings.Development.json └── appsettings.json ├── 13-dependency-injection ├── DependencyInjection.csproj ├── Program.cs ├── README.md └── appsettings.json ├── 14-array-object-access ├── ArrayObjectAccess.csproj ├── Program.cs ├── README.md └── appsettings.json ├── 15-flat-configuration ├── FlatConfiguration.csproj ├── Program.cs ├── README.md └── config.json ├── 16-hierarchical-config ├── HierarchicalConfig.csproj ├── Program.cs ├── README.md └── config.json ├── 17-section-binding ├── Program.cs ├── README.md ├── SectionBinding.csproj └── config.json ├── 18-environment-configs ├── EnvironmentConfigs.csproj ├── Program.cs ├── README.md ├── appsettings.Development.json ├── appsettings.Production.json ├── appsettings.Staging.json └── appsettings.json ├── 19-aspnet-options-pattern ├── AspNetOptionsPattern.csproj ├── FileOptions.cs ├── MarkdownConverter.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── InjectConfig.cshtml │ ├── InjectConfig.cshtml.cs │ ├── InjectedIOptions.cshtml │ ├── InjectedIOptions.cshtml.cs │ ├── InjectedIOptionsMonitor.cshtml │ ├── InjectedIOptionsMonitor.cshtml.cs │ ├── InjectedIOptionsSnapshot.cshtml │ ├── InjectedIOptionsSnapshot.cshtml.cs │ ├── InjectedService.cshtml │ ├── InjectedService.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Providers.cshtml │ ├── Providers.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── Services │ └── ExportServices.cs ├── 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 ├── 20-named-options ├── FileOptions.cs ├── NamedOptions.csproj ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── InjectConfig.cshtml │ ├── InjectConfig.cshtml.cs │ ├── InjectConfigInRazor.cshtml │ ├── InjectConfigInRazor.cshtml.cs │ ├── InjectedIOptions.cshtml │ ├── InjectedIOptions.cshtml.cs │ ├── InjectedIOptionsMonitor.cshtml │ ├── InjectedIOptionsMonitor.cshtml.cs │ ├── InjectedIOptionsSnapshot.cshtml │ ├── InjectedIOptionsSnapshot.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Providers.cshtml │ ├── Providers.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── 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 ├── 21-azure-app-configuration ├── AzureAppConfiguration.csproj ├── Controllers │ └── HomeController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── Settings.cs ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── setup.ps1 ├── setup.sh └── 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 ├── 22-app-config-advanced ├── AppConfigAdvanced.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── appsettings.json ├── setup.ps1 └── setup.sh ├── 23-options-validation ├── OptionsValidation.csproj ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── ValidateWebHookSettingsOptions.cs ├── WebHookSettings.cs ├── 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 ├── 24-configuration-reload ├── ConfigurationReload.csproj ├── Program.cs ├── README.md └── appsettings.json ├── 25-logging-reload ├── LoggingReload.csproj ├── Program.cs ├── README.md └── appsettings.json ├── 26-collections-binding ├── CollectionsBinding.csproj ├── Program.cs ├── README.md └── appsettings.json ├── 27-secret-matrix ├── Program.cs ├── README.md ├── SecretMatrix.csproj ├── appsettings.Development.json └── appsettings.json ├── 28-configuration-testing ├── ConfigurationTesting.csproj ├── Models │ └── DatabaseSettings.cs ├── README.md ├── Services │ └── DatabaseService.cs ├── Tests │ ├── ConfigurationBindingTests.cs │ ├── ConfigurationProviderTests.cs │ ├── MockedConfigurationTests.cs │ ├── OptionsPatternTests.cs │ └── ValidationTests.cs └── appsettings.json ├── 29-integration-testing ├── IntegrationTesting.csproj ├── IntegrationTesting.sln ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── Tests │ └── WebApplicationIntegrationTests.cs ├── appsettings.Test.json └── appsettings.json ├── 30-aspire ├── .aspire │ └── settings.json ├── AspireSample.ApiService │ ├── AspireSample.ApiService.csproj │ ├── AspireSample.ApiService.http │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── AspireSample.AppHost │ ├── AppHost.cs │ ├── AspireSample.AppHost.csproj │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── AspireSample.ServiceDefaults │ ├── AspireSample.ServiceDefaults.csproj │ └── Extensions.cs ├── AspireSample.Tests │ ├── AspireSample.Tests.csproj │ └── WebTests.cs ├── AspireSample.Web │ ├── AspireSample.Web.csproj │ ├── Components │ │ ├── App.razor │ │ ├── Layout │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.css │ │ │ ├── NavMenu.razor │ │ │ └── NavMenu.razor.css │ │ ├── Pages │ │ │ ├── Counter.razor │ │ │ ├── Error.razor │ │ │ ├── Home.razor │ │ │ └── Weather.razor │ │ ├── Routes.razor │ │ └── _Imports.razor │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WeatherApiClient.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── app.css │ │ ├── favicon.png │ │ └── lib │ │ └── bootstrap │ │ └── 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 └── AspireSample.sln ├── dotnet-configuration-in-depth.slnx ├── readme.md └── slides ├── Slides.md ├── img ├── background.jpg ├── coding.png ├── compile-time.png ├── configuration-providers.png ├── configuration-source.png ├── dotnet-logo.png ├── gears.png ├── owl.png ├── portrait.jpg ├── portrait.png ├── run-time.png └── session-feedback.png └── themes └── custom-default.css /.devcontainer/dotnet/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.devcontainer/dotnet/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/slides/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.devcontainer/slides/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnetversionsweeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.github/workflows/dotnetversionsweeper.yml -------------------------------------------------------------------------------- /.github/workflows/marp-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.github/workflows/marp-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /01-basic-console/BasicConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/01-basic-console/BasicConsole.csproj -------------------------------------------------------------------------------- /01-basic-console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/01-basic-console/Program.cs -------------------------------------------------------------------------------- /01-basic-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/01-basic-console/README.md -------------------------------------------------------------------------------- /02-generic-host/GenericHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/02-generic-host/GenericHost.csproj -------------------------------------------------------------------------------- /02-generic-host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/02-generic-host/Program.cs -------------------------------------------------------------------------------- /02-generic-host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/02-generic-host/README.md -------------------------------------------------------------------------------- /02-generic-host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/02-generic-host/appsettings.json -------------------------------------------------------------------------------- /03-json-config/JsonConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/03-json-config/JsonConfig.csproj -------------------------------------------------------------------------------- /03-json-config/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/03-json-config/Program.cs -------------------------------------------------------------------------------- /03-json-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/03-json-config/README.md -------------------------------------------------------------------------------- /03-json-config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/03-json-config/config.json -------------------------------------------------------------------------------- /04-environment-variables/EnvironmentVariables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/04-environment-variables/EnvironmentVariables.csproj -------------------------------------------------------------------------------- /04-environment-variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/04-environment-variables/Program.cs -------------------------------------------------------------------------------- /04-environment-variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/04-environment-variables/README.md -------------------------------------------------------------------------------- /04-environment-variables/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/04-environment-variables/config.json -------------------------------------------------------------------------------- /05-command-line-args/CommandLineArgs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/05-command-line-args/CommandLineArgs.csproj -------------------------------------------------------------------------------- /05-command-line-args/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/05-command-line-args/Program.cs -------------------------------------------------------------------------------- /05-command-line-args/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/05-command-line-args/README.md -------------------------------------------------------------------------------- /05-command-line-args/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/05-command-line-args/config.json -------------------------------------------------------------------------------- /06-in-memory-config/InMemoryConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/06-in-memory-config/InMemoryConfig.csproj -------------------------------------------------------------------------------- /06-in-memory-config/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/06-in-memory-config/Program.cs -------------------------------------------------------------------------------- /06-in-memory-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/06-in-memory-config/README.md -------------------------------------------------------------------------------- /06-in-memory-config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/06-in-memory-config/config.json -------------------------------------------------------------------------------- /07-user-secrets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/07-user-secrets/Program.cs -------------------------------------------------------------------------------- /07-user-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/07-user-secrets/README.md -------------------------------------------------------------------------------- /07-user-secrets/UserSecrets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/07-user-secrets/UserSecrets.csproj -------------------------------------------------------------------------------- /07-user-secrets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/07-user-secrets/config.json -------------------------------------------------------------------------------- /08-configuration-sections/ConfigurationSections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/08-configuration-sections/ConfigurationSections.csproj -------------------------------------------------------------------------------- /08-configuration-sections/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/08-configuration-sections/Program.cs -------------------------------------------------------------------------------- /08-configuration-sections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/08-configuration-sections/README.md -------------------------------------------------------------------------------- /08-configuration-sections/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/08-configuration-sections/config.json -------------------------------------------------------------------------------- /09-command-line-mappings/CommandLineMappings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/09-command-line-mappings/CommandLineMappings.csproj -------------------------------------------------------------------------------- /09-command-line-mappings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/09-command-line-mappings/Program.cs -------------------------------------------------------------------------------- /09-command-line-mappings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/09-command-line-mappings/README.md -------------------------------------------------------------------------------- /09-command-line-mappings/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/09-command-line-mappings/config.json -------------------------------------------------------------------------------- /10-key-per-file/KeyPerFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/10-key-per-file/KeyPerFile.csproj -------------------------------------------------------------------------------- /10-key-per-file/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/10-key-per-file/Program.cs -------------------------------------------------------------------------------- /10-key-per-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/10-key-per-file/README.md -------------------------------------------------------------------------------- /10-key-per-file/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/10-key-per-file/config.json -------------------------------------------------------------------------------- /10-key-per-file/keyPerFile/Logging__KeyFile: -------------------------------------------------------------------------------- 1 | file value -------------------------------------------------------------------------------- /10-key-per-file/keyPerFile/SecretKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/10-key-per-file/keyPerFile/SecretKey -------------------------------------------------------------------------------- /10-key-per-file/keyPerFile/environment: -------------------------------------------------------------------------------- 1 | QA -------------------------------------------------------------------------------- /10-key-per-file/keyPerFile/greeting: -------------------------------------------------------------------------------- 1 | Hi ONETUG! -------------------------------------------------------------------------------- /11-azure-keyvault/AzureKeyvault.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/AzureKeyvault.csproj -------------------------------------------------------------------------------- /11-azure-keyvault/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/Program.cs -------------------------------------------------------------------------------- /11-azure-keyvault/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/Properties/launchSettings.json -------------------------------------------------------------------------------- /11-azure-keyvault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/README.md -------------------------------------------------------------------------------- /11-azure-keyvault/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/appsettings.Development.json -------------------------------------------------------------------------------- /11-azure-keyvault/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/appsettings.json -------------------------------------------------------------------------------- /11-azure-keyvault/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/11-azure-keyvault/setup.sh -------------------------------------------------------------------------------- /12-configuration-precedence/ConfigurationPrecedence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/12-configuration-precedence/ConfigurationPrecedence.csproj -------------------------------------------------------------------------------- /12-configuration-precedence/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/12-configuration-precedence/Program.cs -------------------------------------------------------------------------------- /12-configuration-precedence/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/12-configuration-precedence/Properties/launchSettings.json -------------------------------------------------------------------------------- /12-configuration-precedence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/12-configuration-precedence/README.md -------------------------------------------------------------------------------- /12-configuration-precedence/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/12-configuration-precedence/appsettings.Development.json -------------------------------------------------------------------------------- /12-configuration-precedence/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/12-configuration-precedence/appsettings.json -------------------------------------------------------------------------------- /13-dependency-injection/DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/13-dependency-injection/DependencyInjection.csproj -------------------------------------------------------------------------------- /13-dependency-injection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/13-dependency-injection/Program.cs -------------------------------------------------------------------------------- /13-dependency-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/13-dependency-injection/README.md -------------------------------------------------------------------------------- /13-dependency-injection/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/13-dependency-injection/appsettings.json -------------------------------------------------------------------------------- /14-array-object-access/ArrayObjectAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/14-array-object-access/ArrayObjectAccess.csproj -------------------------------------------------------------------------------- /14-array-object-access/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/14-array-object-access/Program.cs -------------------------------------------------------------------------------- /14-array-object-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/14-array-object-access/README.md -------------------------------------------------------------------------------- /14-array-object-access/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/14-array-object-access/appsettings.json -------------------------------------------------------------------------------- /15-flat-configuration/FlatConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/15-flat-configuration/FlatConfiguration.csproj -------------------------------------------------------------------------------- /15-flat-configuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/15-flat-configuration/Program.cs -------------------------------------------------------------------------------- /15-flat-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/15-flat-configuration/README.md -------------------------------------------------------------------------------- /15-flat-configuration/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/15-flat-configuration/config.json -------------------------------------------------------------------------------- /16-hierarchical-config/HierarchicalConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/16-hierarchical-config/HierarchicalConfig.csproj -------------------------------------------------------------------------------- /16-hierarchical-config/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/16-hierarchical-config/Program.cs -------------------------------------------------------------------------------- /16-hierarchical-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/16-hierarchical-config/README.md -------------------------------------------------------------------------------- /16-hierarchical-config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/16-hierarchical-config/config.json -------------------------------------------------------------------------------- /17-section-binding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/17-section-binding/Program.cs -------------------------------------------------------------------------------- /17-section-binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/17-section-binding/README.md -------------------------------------------------------------------------------- /17-section-binding/SectionBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/17-section-binding/SectionBinding.csproj -------------------------------------------------------------------------------- /17-section-binding/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/17-section-binding/config.json -------------------------------------------------------------------------------- /18-environment-configs/EnvironmentConfigs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/EnvironmentConfigs.csproj -------------------------------------------------------------------------------- /18-environment-configs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/Program.cs -------------------------------------------------------------------------------- /18-environment-configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/README.md -------------------------------------------------------------------------------- /18-environment-configs/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/appsettings.Development.json -------------------------------------------------------------------------------- /18-environment-configs/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/appsettings.Production.json -------------------------------------------------------------------------------- /18-environment-configs/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/appsettings.Staging.json -------------------------------------------------------------------------------- /18-environment-configs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/18-environment-configs/appsettings.json -------------------------------------------------------------------------------- /19-aspnet-options-pattern/AspNetOptionsPattern.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/AspNetOptionsPattern.csproj -------------------------------------------------------------------------------- /19-aspnet-options-pattern/FileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/FileOptions.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/MarkdownConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/MarkdownConverter.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Error.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Index.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectConfig.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectConfig.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectConfig.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectConfig.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedIOptions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedIOptions.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedIOptions.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedIOptions.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedIOptionsMonitor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedIOptionsMonitor.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedIOptionsMonitor.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedIOptionsMonitor.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedIOptionsSnapshot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedIOptionsSnapshot.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedIOptionsSnapshot.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedIOptionsSnapshot.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedService.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedService.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/InjectedService.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/InjectedService.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Providers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Providers.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Providers.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Providers.cshtml.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Program.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Properties/launchSettings.json -------------------------------------------------------------------------------- /19-aspnet-options-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/README.md -------------------------------------------------------------------------------- /19-aspnet-options-pattern/Services/ExportServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/Services/ExportServices.cs -------------------------------------------------------------------------------- /19-aspnet-options-pattern/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/appsettings.Development.json -------------------------------------------------------------------------------- /19-aspnet-options-pattern/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/appsettings.json -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/css/site.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/favicon.ico -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/js/site.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /19-aspnet-options-pattern/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/19-aspnet-options-pattern/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /20-named-options/FileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/FileOptions.cs -------------------------------------------------------------------------------- /20-named-options/NamedOptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/NamedOptions.csproj -------------------------------------------------------------------------------- /20-named-options/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Error.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Index.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/InjectConfig.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectConfig.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/InjectConfig.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectConfig.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/InjectConfigInRazor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectConfigInRazor.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/InjectConfigInRazor.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectConfigInRazor.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/InjectedIOptions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectedIOptions.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/InjectedIOptions.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectedIOptions.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/InjectedIOptionsMonitor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectedIOptionsMonitor.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/InjectedIOptionsMonitor.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectedIOptionsMonitor.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/InjectedIOptionsSnapshot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectedIOptionsSnapshot.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/InjectedIOptionsSnapshot.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/InjectedIOptionsSnapshot.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/Providers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Providers.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/Providers.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Providers.cshtml.cs -------------------------------------------------------------------------------- /20-named-options/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /20-named-options/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /20-named-options/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /20-named-options/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Program.cs -------------------------------------------------------------------------------- /20-named-options/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/Properties/launchSettings.json -------------------------------------------------------------------------------- /20-named-options/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/README.md -------------------------------------------------------------------------------- /20-named-options/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/appsettings.Development.json -------------------------------------------------------------------------------- /20-named-options/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/appsettings.json -------------------------------------------------------------------------------- /20-named-options/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/css/site.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/favicon.ico -------------------------------------------------------------------------------- /20-named-options/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/js/site.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /20-named-options/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/20-named-options/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /21-azure-app-configuration/AzureAppConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/AzureAppConfiguration.csproj -------------------------------------------------------------------------------- /21-azure-app-configuration/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Controllers/HomeController.cs -------------------------------------------------------------------------------- /21-azure-app-configuration/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /21-azure-app-configuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Program.cs -------------------------------------------------------------------------------- /21-azure-app-configuration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Properties/launchSettings.json -------------------------------------------------------------------------------- /21-azure-app-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/README.md -------------------------------------------------------------------------------- /21-azure-app-configuration/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Settings.cs -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /21-azure-app-configuration/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/appsettings.Development.json -------------------------------------------------------------------------------- /21-azure-app-configuration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/appsettings.json -------------------------------------------------------------------------------- /21-azure-app-configuration/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/setup.ps1 -------------------------------------------------------------------------------- /21-azure-app-configuration/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/setup.sh -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/css/site.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/favicon.ico -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/js/site.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /21-azure-app-configuration/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/21-azure-app-configuration/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /22-app-config-advanced/AppConfigAdvanced.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/AppConfigAdvanced.csproj -------------------------------------------------------------------------------- /22-app-config-advanced/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/Program.cs -------------------------------------------------------------------------------- /22-app-config-advanced/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/Properties/launchSettings.json -------------------------------------------------------------------------------- /22-app-config-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/README.md -------------------------------------------------------------------------------- /22-app-config-advanced/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/appsettings.json -------------------------------------------------------------------------------- /22-app-config-advanced/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/setup.ps1 -------------------------------------------------------------------------------- /22-app-config-advanced/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/22-app-config-advanced/setup.sh -------------------------------------------------------------------------------- /23-options-validation/OptionsValidation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/OptionsValidation.csproj -------------------------------------------------------------------------------- /23-options-validation/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Error.cshtml -------------------------------------------------------------------------------- /23-options-validation/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /23-options-validation/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Index.cshtml -------------------------------------------------------------------------------- /23-options-validation/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /23-options-validation/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /23-options-validation/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /23-options-validation/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /23-options-validation/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /23-options-validation/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /23-options-validation/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /23-options-validation/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /23-options-validation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Program.cs -------------------------------------------------------------------------------- /23-options-validation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/Properties/launchSettings.json -------------------------------------------------------------------------------- /23-options-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/README.md -------------------------------------------------------------------------------- /23-options-validation/ValidateWebHookSettingsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/ValidateWebHookSettingsOptions.cs -------------------------------------------------------------------------------- /23-options-validation/WebHookSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/WebHookSettings.cs -------------------------------------------------------------------------------- /23-options-validation/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/appsettings.Development.json -------------------------------------------------------------------------------- /23-options-validation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/appsettings.json -------------------------------------------------------------------------------- /23-options-validation/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/css/site.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/favicon.ico -------------------------------------------------------------------------------- /23-options-validation/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/js/site.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /23-options-validation/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/23-options-validation/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /24-configuration-reload/ConfigurationReload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/24-configuration-reload/ConfigurationReload.csproj -------------------------------------------------------------------------------- /24-configuration-reload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/24-configuration-reload/Program.cs -------------------------------------------------------------------------------- /24-configuration-reload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/24-configuration-reload/README.md -------------------------------------------------------------------------------- /24-configuration-reload/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/24-configuration-reload/appsettings.json -------------------------------------------------------------------------------- /25-logging-reload/LoggingReload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/25-logging-reload/LoggingReload.csproj -------------------------------------------------------------------------------- /25-logging-reload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/25-logging-reload/Program.cs -------------------------------------------------------------------------------- /25-logging-reload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/25-logging-reload/README.md -------------------------------------------------------------------------------- /25-logging-reload/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/25-logging-reload/appsettings.json -------------------------------------------------------------------------------- /26-collections-binding/CollectionsBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/26-collections-binding/CollectionsBinding.csproj -------------------------------------------------------------------------------- /26-collections-binding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/26-collections-binding/Program.cs -------------------------------------------------------------------------------- /26-collections-binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/26-collections-binding/README.md -------------------------------------------------------------------------------- /26-collections-binding/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/26-collections-binding/appsettings.json -------------------------------------------------------------------------------- /27-secret-matrix/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/27-secret-matrix/Program.cs -------------------------------------------------------------------------------- /27-secret-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/27-secret-matrix/README.md -------------------------------------------------------------------------------- /27-secret-matrix/SecretMatrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/27-secret-matrix/SecretMatrix.csproj -------------------------------------------------------------------------------- /27-secret-matrix/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/27-secret-matrix/appsettings.Development.json -------------------------------------------------------------------------------- /27-secret-matrix/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/27-secret-matrix/appsettings.json -------------------------------------------------------------------------------- /28-configuration-testing/ConfigurationTesting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/ConfigurationTesting.csproj -------------------------------------------------------------------------------- /28-configuration-testing/Models/DatabaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Models/DatabaseSettings.cs -------------------------------------------------------------------------------- /28-configuration-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/README.md -------------------------------------------------------------------------------- /28-configuration-testing/Services/DatabaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Services/DatabaseService.cs -------------------------------------------------------------------------------- /28-configuration-testing/Tests/ConfigurationBindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Tests/ConfigurationBindingTests.cs -------------------------------------------------------------------------------- /28-configuration-testing/Tests/ConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Tests/ConfigurationProviderTests.cs -------------------------------------------------------------------------------- /28-configuration-testing/Tests/MockedConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Tests/MockedConfigurationTests.cs -------------------------------------------------------------------------------- /28-configuration-testing/Tests/OptionsPatternTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Tests/OptionsPatternTests.cs -------------------------------------------------------------------------------- /28-configuration-testing/Tests/ValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/Tests/ValidationTests.cs -------------------------------------------------------------------------------- /28-configuration-testing/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/28-configuration-testing/appsettings.json -------------------------------------------------------------------------------- /29-integration-testing/IntegrationTesting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/IntegrationTesting.csproj -------------------------------------------------------------------------------- /29-integration-testing/IntegrationTesting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/IntegrationTesting.sln -------------------------------------------------------------------------------- /29-integration-testing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/Program.cs -------------------------------------------------------------------------------- /29-integration-testing/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/Properties/launchSettings.json -------------------------------------------------------------------------------- /29-integration-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/README.md -------------------------------------------------------------------------------- /29-integration-testing/Tests/WebApplicationIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/Tests/WebApplicationIntegrationTests.cs -------------------------------------------------------------------------------- /29-integration-testing/appsettings.Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/appsettings.Test.json -------------------------------------------------------------------------------- /29-integration-testing/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/29-integration-testing/appsettings.json -------------------------------------------------------------------------------- /30-aspire/.aspire/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/.aspire/settings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.ApiService/AspireSample.ApiService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ApiService/AspireSample.ApiService.csproj -------------------------------------------------------------------------------- /30-aspire/AspireSample.ApiService/AspireSample.ApiService.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ApiService/AspireSample.ApiService.http -------------------------------------------------------------------------------- /30-aspire/AspireSample.ApiService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ApiService/Program.cs -------------------------------------------------------------------------------- /30-aspire/AspireSample.ApiService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ApiService/Properties/launchSettings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.ApiService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ApiService/appsettings.Development.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.ApiService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ApiService/appsettings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.AppHost/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.AppHost/AppHost.cs -------------------------------------------------------------------------------- /30-aspire/AspireSample.AppHost/AspireSample.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.AppHost/AspireSample.AppHost.csproj -------------------------------------------------------------------------------- /30-aspire/AspireSample.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.AppHost/appsettings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.ServiceDefaults/AspireSample.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ServiceDefaults/AspireSample.ServiceDefaults.csproj -------------------------------------------------------------------------------- /30-aspire/AspireSample.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /30-aspire/AspireSample.Tests/AspireSample.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Tests/AspireSample.Tests.csproj -------------------------------------------------------------------------------- /30-aspire/AspireSample.Tests/WebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Tests/WebTests.cs -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/AspireSample.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/AspireSample.Web.csproj -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/App.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Pages/Counter.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Pages/Error.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Pages/Home.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/Routes.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Components/_Imports.razor -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Program.cs -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/WeatherApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/WeatherApiClient.cs -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/appsettings.Development.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/appsettings.json -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/app.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/favicon.png -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /30-aspire/AspireSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/30-aspire/AspireSample.sln -------------------------------------------------------------------------------- /dotnet-configuration-in-depth.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/dotnet-configuration-in-depth.slnx -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/readme.md -------------------------------------------------------------------------------- /slides/Slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/Slides.md -------------------------------------------------------------------------------- /slides/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/background.jpg -------------------------------------------------------------------------------- /slides/img/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/coding.png -------------------------------------------------------------------------------- /slides/img/compile-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/compile-time.png -------------------------------------------------------------------------------- /slides/img/configuration-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/configuration-providers.png -------------------------------------------------------------------------------- /slides/img/configuration-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/configuration-source.png -------------------------------------------------------------------------------- /slides/img/dotnet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/dotnet-logo.png -------------------------------------------------------------------------------- /slides/img/gears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/gears.png -------------------------------------------------------------------------------- /slides/img/owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/owl.png -------------------------------------------------------------------------------- /slides/img/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/portrait.jpg -------------------------------------------------------------------------------- /slides/img/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/portrait.png -------------------------------------------------------------------------------- /slides/img/run-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/run-time.png -------------------------------------------------------------------------------- /slides/img/session-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/img/session-feedback.png -------------------------------------------------------------------------------- /slides/themes/custom-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebytes/dotnet-configuration-in-depth/HEAD/slides/themes/custom-default.css --------------------------------------------------------------------------------