├── .gitignore ├── Chapter01 ├── LoggingSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── LoggingSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── LoggingSample3.1 │ ├── Controllers │ │ └── HomeController.cs │ ├── LoggingSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── LoggingSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── LoggingSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── NLog.Config │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── LoggingSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── HomeController.cs │ ├── CustomLogger.cs │ ├── LoggingSample.csproj │ ├── Models │ └── ErrorViewModel.cs │ ├── NLog.Config │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── Chapter02 ├── ConfigureSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── AppSettings.cs │ ├── ConfigureSample.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.ini │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── ConfigureSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── AppSettings.cs │ ├── ConfigureSample.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.ini │ ├── 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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── ConfigureSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── AppSettings.cs │ ├── ConfigureSample.csproj │ ├── Controllers │ └── HomeController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.ini │ ├── 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-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── Chapter03 ├── DiSample2.2 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── DiSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── DiSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── DiSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── DiSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── DiSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── DiSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── HomeController.cs │ ├── DiSample.csproj │ ├── IHostBuilderExtension.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── MyService.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── Chapter04 ├── HttpSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── HttpSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── HttpSample5.0 │ ├── Controllers │ │ └── HomeController.cs │ ├── HttpSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── HttpSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── HomeController.cs │ ├── HttpSample.csproj │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── Chapter05 ├── HostBuilderConfig3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── HostbBuilderConfig.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── HostBuilderConfig5.0 │ ├── HostBuilderConfig.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json └── HostBuilderConfig6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── HostBuilderConfig.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter06 ├── Apache.config ├── ExploreHosting5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ExploreHosting.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── ExploreHosting6.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ExploreHosting.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── Nginx.config └── kestrel-yourapplication.service ├── Chapter07 ├── BackgroundServiceSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── BackgroundServiceSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Worker.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── BackgroundServiceSample5.0 │ ├── BackgroundServiceSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Worker.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── BackgroundServiceSample6.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── BackgroundServiceSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Worker.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── HostedServiceSample3.0 │ ├── Controllers │ │ └── HomeController.cs │ ├── HostedServiceSample.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SampleBackgroundService.cs │ ├── SampleHostedService.cs │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── HostedServiceSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── HomeController.cs │ ├── HostedServiceSample.csproj │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SampleBackgroundService.cs │ ├── SampleHostedService.cs │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── Chapter08 ├── MiddlewaresSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── MiddlewaresSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── MiddlewaresSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── MiddlewaresSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── MiddlewaresSample6.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── AppStatusMiddleware.cs │ ├── MiddlewaresSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── StopWatchMiddleware.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── MiddlewaresSampleRouted3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── MiddlewaresSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json └── MiddlewaresSampleRouted5.0 │ ├── MiddlewaresSampleRouted.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── Chapter09 ├── RoutingSample5.0 │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── RoutingSample.csproj │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── RoutingSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── HomeController.cs │ ├── MapMyHealthChecksExtensions.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── MyHealthChecksMiddleware.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── RoutingSample.csproj │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Chapter10 └── AuthSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Areas │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── Manage │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── ManageNavPages.cs │ │ │ ├── _ManageNav.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── AuthSample.csproj │ ├── Controllers │ └── HomeController.cs │ ├── Data │ ├── ApplicationDbContext.cs │ ├── Migrations │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ ├── 20211108153859_CustomUserData.Designer.cs │ │ ├── 20211108153859_CustomUserData.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ └── WebAppUser.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ScaffoldingReadMe.txt │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── app.db │ ├── 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 ├── Chapter11 └── IdentityManagementSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Areas │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── Manage │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── ManageNavPages.cs │ │ │ ├── _ManageNav.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Controllers │ └── HomeController.cs │ ├── Data │ ├── ApplicationDbContext.cs │ ├── ApplicationUser.cs │ └── Migrations │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ ├── 20211125204020_CustomUserData.Designer.cs │ │ ├── 20211125204020_CustomUserData.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── IdentiyManagementSample.csproj │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── app.db │ ├── 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 ├── Chapter12 ├── OutputFormatterSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ ├── PersonsController.cs │ │ └── ValuesController.cs │ ├── CsvOutputFormatter.cs │ ├── Models │ │ └── Person.cs │ ├── OutputFormatterSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── VcardOutputFormatter.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── OutputFormatterSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ ├── PersonsController.cs │ │ └── WeatherForecastController.cs │ ├── CsvOutputFormatter.cs │ ├── Models │ │ └── Person.cs │ ├── OutputFormatterSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── VcardOutputFormatter.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json └── OutputFormatterSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ ├── PersonsController .cs │ └── WeatherForecastController.cs │ ├── CsvOutputFormatter.cs │ ├── Models │ ├── Person.cs │ └── WeatherForecast.cs │ ├── OutputFormatterSample.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── VcardOutputFormatter.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter13 ├── ModelBinderSample3.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ ├── PersonsController.cs │ │ └── ValuesController.cs │ ├── ModelBinderSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── ModelBinderSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ ├── PersonsController.cs │ │ └── WeatherForecastController.cs │ ├── ModelBinderSample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json ├── ModelBinderSample6.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ ├── PersonsController.cs │ │ └── WeatherForecastController.cs │ ├── ModelBinderSample.csproj │ ├── Models │ │ └── Person.cs │ ├── PersonsCsvBinder.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json └── testdata.csv ├── Chapter14 ├── ActionFilterSample2.2 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ActionFilterSample.csproj │ ├── Controllers │ │ ├── HomeController.cs │ │ └── PersonsController.cs │ ├── LoggingActionFilter.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SampleActionFilter.cs │ ├── SampleAsyncActionFilter.cs │ ├── Startup.cs │ ├── ValidateModelAttribute.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── ActionFilterSample3.0 │ ├── ActionFilterSample.csproj │ ├── Controllers │ │ ├── HomeController.cs │ │ └── PersonsController.cs │ ├── LoggingActionFilter.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SampleActionFilter.cs │ ├── SampleAsyncActionFilter.cs │ ├── Startup.cs │ ├── ValidateModelAttribute.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── ActionFilterSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ActionFilterSample.csproj │ ├── Controllers │ │ ├── HomeController.cs │ │ └── PersonsController.cs │ ├── LoggingActionFilter.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SampleActionFilter.cs │ ├── SampleAsyncActionFilter.cs │ ├── Startup.cs │ ├── ValidateModelAttribute.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── ActionFilterSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── ActionFilterSample.csproj │ ├── Controllers │ ├── HomeController.cs │ └── PersonsController.cs │ ├── LoggingActionFilter.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SampleActionFilter.cs │ ├── SampleAsyncActionFilter.cs │ ├── ValidateModelAttribute.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 │ └── 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 ├── Chapter15 └── CacheSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── CacheSample.csproj │ ├── Controllers │ └── HomeController.cs │ ├── Models │ ├── ErrorViewModel.cs │ ├── IndexViewModel.cs │ └── Person.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── 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 │ └── 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 ├── Chapter16 ├── TagHelperSample2.2 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── PersonService.cs │ ├── Startup.cs │ ├── TagHelperSample.csproj │ ├── TagHelpers │ │ ├── GreeterTagHelper.cs │ │ └── PersonGridTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── TagHelperSample3.0 │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── PersonService.cs │ ├── Startup.cs │ ├── TagHelperSample.csproj │ ├── TagHelpers │ │ ├── GreeterTagHelper.cs │ │ └── PersonGridTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 ├── TagHelperSample5.0 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── PersonService.cs │ ├── Startup.cs │ ├── TagHelperSample.csproj │ ├── TagHelpers │ │ ├── DataGridagHelper.cs │ │ ├── GreeterTagHelper.cs │ │ ├── PersonGridTagHelper.cs │ │ └── StrongTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.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-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.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 └── TagHelperSample6.0 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── HomeController.cs │ ├── Models │ ├── ErrorViewModel.cs │ └── Person.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ └── PersonService.cs │ ├── TagHelperSample.csproj │ ├── TagHelpers │ ├── DataGridagHelper.cs │ ├── GreeterTagHelper.cs │ ├── PersonGridTagHelper.cs │ └── StrongTagHelper.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 │ └── 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 ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/LoggingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/LoggingSample.csproj -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/global.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/LoggingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/LoggingSample.csproj -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Program.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Startup.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/appsettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/global.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter01/LoggingSample3.1/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample3.1/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/LoggingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/LoggingSample.csproj -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/NLog.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/NLog.Config -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/global.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter01/LoggingSample5.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample5.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/CustomLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/CustomLogger.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/LoggingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/LoggingSample.csproj -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/NLog.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/NLog.Config -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter01/LoggingSample6.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter01/LoggingSample6.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/AppSettings.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/ConfigureSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/ConfigureSample.csproj -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/appsettings.ini: -------------------------------------------------------------------------------- 1 | [AppSettings] 2 | Bar="FooBar" -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/global.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter02/ConfigureSample3.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample3.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/AppSettings.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/ConfigureSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/ConfigureSample.csproj -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/appsettings.ini: -------------------------------------------------------------------------------- 1 | [AppSettings] 2 | Bar="FooBar" -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter02/ConfigureSample5.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample5.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/AppSettings.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/ConfigureSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/ConfigureSample.csproj -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/appsettings.ini: -------------------------------------------------------------------------------- 1 | [AppSettings] 2 | Bar="FooBar" -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter02/ConfigureSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter02/ConfigureSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/DiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/DiSample.csproj -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Program.cs -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Startup.cs -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/appsettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/global.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter03/DiSample2.2/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample2.2/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/DiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/DiSample.csproj -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/global.json -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter03/DiSample3.0/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample3.0/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/DiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/DiSample.csproj -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/global.json -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter03/DiSample5.0/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample5.0/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/DiSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/DiSample.csproj -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/IHostBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/IHostBuilderExtension.cs -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/MyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/MyService.cs -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter03/DiSample6.0/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter03/DiSample6.0/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/HttpSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/HttpSample.csproj -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/global.json -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter04/HttpSample3.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample3.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/HttpSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/HttpSample.csproj -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/global.json -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter04/HttpSample5.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample5.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/HttpSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/HttpSample.csproj -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter04/HttpSample6.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter04/HttpSample6.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/HostbBuilderConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/HostbBuilderConfig.csproj -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/Program.cs -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig3.0/global.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig5.0/HostBuilderConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig5.0/HostBuilderConfig.csproj -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig5.0/Program.cs -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig5.0/global.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig6.0/HostBuilderConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig6.0/HostBuilderConfig.csproj -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig6.0/Program.cs -------------------------------------------------------------------------------- /Chapter05/HostBuilderConfig6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter05/HostBuilderConfig6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter06/Apache.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/Apache.config -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/ExploreHosting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/ExploreHosting.csproj -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/Program.cs -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting6.0/ExploreHosting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting6.0/ExploreHosting.csproj -------------------------------------------------------------------------------- /Chapter06/ExploreHosting6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting6.0/Program.cs -------------------------------------------------------------------------------- /Chapter06/ExploreHosting6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter06/ExploreHosting6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/ExploreHosting6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter06/Nginx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/Nginx.config -------------------------------------------------------------------------------- /Chapter06/kestrel-yourapplication.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter06/kestrel-yourapplication.service -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample3.0/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample3.0/Worker.cs -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample3.0/global.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample5.0/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample5.0/Worker.cs -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample5.0/global.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample6.0/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample6.0/Worker.cs -------------------------------------------------------------------------------- /Chapter07/BackgroundServiceSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/BackgroundServiceSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/SampleHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/SampleHostedService.cs -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/global.json -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/SampleHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/SampleHostedService.cs -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter07/HostedServiceSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter07/HostedServiceSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/MiddlewaresSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/MiddlewaresSample.csproj -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample3.0/global.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/MiddlewaresSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/MiddlewaresSample.csproj -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample5.0/global.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/AppStatusMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/AppStatusMiddleware.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/MiddlewaresSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/MiddlewaresSample.csproj -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/StopWatchMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/StopWatchMiddleware.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted3.0/Program.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted3.0/global.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted5.0/Program.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter08/MiddlewaresSampleRouted5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter08/MiddlewaresSampleRouted5.0/global.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/RoutingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/RoutingSample.csproj -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/global.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter09/RoutingSample5.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample5.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/MyHealthChecksMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/MyHealthChecksMiddleware.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/RoutingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/RoutingSample.csproj -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter09/RoutingSample6.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter09/RoutingSample6.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AuthSample.Areas.Identity.Pages.Account.Manage -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using AuthSample.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/AuthSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/AuthSample.csproj -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Data/WebAppUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Data/WebAppUser.cs -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/ScaffoldingReadMe.txt -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/app.db -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter10/AuthSample6.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter10/AuthSample6.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter11/IdentityManagementSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter11/IdentityManagementSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter11/IdentityManagementSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter11/IdentityManagementSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter11/IdentityManagementSample6.0/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter11/IdentityManagementSample6.0/app.db -------------------------------------------------------------------------------- /Chapter11/IdentityManagementSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter11/IdentityManagementSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter11/IdentityManagementSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter11/IdentityManagementSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/CsvOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/CsvOutputFormatter.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/Models/Person.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample3.0/global.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/CsvOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/CsvOutputFormatter.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/Models/Person.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample5.0/global.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample6.0/CsvOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample6.0/CsvOutputFormatter.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample6.0/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample6.0/Models/Person.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter12/OutputFormatterSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter12/OutputFormatterSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/ModelBinderSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/ModelBinderSample.csproj -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample3.0/global.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/ModelBinderSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/ModelBinderSample.csproj -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample5.0/global.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/ModelBinderSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/ModelBinderSample.csproj -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/Models/Person.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/PersonsCsvBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/PersonsCsvBinder.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter13/ModelBinderSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/ModelBinderSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter13/testdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter13/testdata.csv -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/LoggingActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/LoggingActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/Program.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/SampleActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/SampleActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/Startup.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/appsettings.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/global.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample2.2/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample2.2/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/LoggingActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/LoggingActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/SampleActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/SampleActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/global.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/LoggingActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/LoggingActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/SampleActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/SampleActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/global.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/LoggingActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/LoggingActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/SampleActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/SampleActionFilter.cs -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter14/ActionFilterSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter14/ActionFilterSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/CacheSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/CacheSample.csproj -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Models/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Models/IndexViewModel.cs -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Models/Person.cs -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter15/CacheSample6.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter15/CacheSample6.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Program.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Services/PersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Services/PersonService.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Startup.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/TagHelperSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/TagHelperSample.csproj -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/appsettings.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/global.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample2.2/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter16/TagHelperSample2.2/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Program.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Services/PersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Services/PersonService.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Startup.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/TagHelperSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/TagHelperSample.csproj -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/appsettings.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/global.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter16/TagHelperSample3.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample3.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Program.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Services/PersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Services/PersonService.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Startup.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/TagHelperSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/TagHelperSample.csproj -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/appsettings.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/global.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter16/TagHelperSample5.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample5.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Models/Person.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Program.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Services/PersonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Services/PersonService.cs -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/TagHelperSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/TagHelperSample.csproj -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/appsettings.json -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter16/TagHelperSample6.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/Chapter16/TagHelperSample6.0/wwwroot/js/site.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------