├── .gitignore ├── Chapter 01 └── Chapter_01_HelloWeb │ ├── Chapter_01_HelloWeb.sln │ └── Chapter_01_HelloWeb │ ├── Chapter_01_HelloWeb.csproj │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter 02 ├── Chapter_02_Certificates │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Chapter_02_Certificates.csproj │ ├── Chapter_02_Certificates.sln │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Startup.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 └── Chapter_02_Workers │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Chapter_02_Workers.csproj │ ├── Chapter_02_Workers.sln │ ├── Program.cs │ ├── Worker.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter 03 └── Chapter_03_DI_Examples │ ├── Chapter_03_DI_Examples.sln │ └── QuickStart │ ├── Chapter_03_QuickStart.csproj │ ├── Controllers │ └── HomeController.cs │ ├── DataManager │ ├── AwesomeMusicManager.cs │ ├── IMusicManager.cs │ ├── INotifier.cs │ ├── InstrumentalMusicManager.cs │ ├── MusicManager.cs │ └── Notifier.cs │ ├── Models │ ├── ErrorViewModel.cs │ └── SongModel.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 │ └── 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 ├── Chapter 04 └── Chapter_04_RazorViewEngine_Examples │ ├── Chapter_04_RazorViewEngine_Examples.sln │ ├── LearningRazorSyntax │ ├── Controllers │ │ └── HomeController.cs │ ├── LearningRazorSyntax.csproj │ ├── Models │ │ ├── BeerModel.cs │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ ├── IndexNew.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 │ ├── ToDo.MVC │ ├── Controllers │ │ ├── HomeController.cs │ │ └── TodoController.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ ├── Todo.cs │ │ ├── TodoDbContext.cs │ │ └── TodoDbSeeder.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── ToDo.MVC.csproj │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Todo │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.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 │ └── ToDo.RazorPages │ ├── Data │ ├── Todo.cs │ ├── TodoDbContext.cs │ └── TodoDbSeeder.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Todos │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Details.cshtml │ │ ├── Details.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── ToDo.RazorPages.csproj │ ├── 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 ├── Chapter 05 and 06 └── Chapter_05_and_06_Blazor_Examples │ └── TouristSpot │ ├── AwesomeBlazor.gif │ ├── BlazorServer.Web │ ├── App.razor │ ├── BlazorServer.Web.csproj │ ├── Data │ │ ├── AppState.cs │ │ ├── Place.cs │ │ └── PlaceService.cs │ ├── Pages │ │ ├── Counter.razor │ │ ├── Error.razor │ │ ├── Index.razor │ │ ├── Main.razor │ │ ├── Spots │ │ │ ├── EditTouristSpot.razor │ │ │ └── ViewTouristSpot.razor │ │ └── _Host.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── NavMenu.razor │ │ └── SurveyPrompt.razor │ ├── Startup.cs │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ └── favicon.ico │ ├── BlazorWasm.PWA │ ├── App.razor │ ├── BlazorWasm.PWA.csproj │ ├── Dto │ │ └── CreatePlaceRequest.cs │ ├── Pages │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ └── Index.razor │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── NavMenu.razor │ │ └── SurveyPrompt.razor │ ├── _Imports.razor │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ ├── favicon.ico │ │ ├── icon-512.png │ │ ├── index.html │ │ ├── manifest.json │ │ ├── sample-data │ │ └── weather.json │ │ ├── service-worker.js │ │ └── service-worker.published.js │ ├── PlaceApi │ ├── Controllers │ │ └── PlacesController.cs │ ├── Db │ │ ├── Images │ │ │ ├── coron_island.jpg │ │ │ └── oslob_whalesharks.png │ │ ├── Models │ │ │ └── Place.cs │ │ ├── PlaceDbContext.cs │ │ ├── PlaceDbSeeder.cs │ │ └── PlaceDbServiceExtension.cs │ ├── PlaceApi.csproj │ ├── PlaceApiHub.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json │ └── TouristSpot.sln ├── Chapter 07 └── Chapter_07_API_EFCore_Examples │ ├── Chapter_07_API_EFCore_Examples.sln │ ├── EFCore_CodeFirst │ ├── Controllers │ │ ├── PlayersController.cs │ │ └── WeatherForecastController.cs │ ├── Db │ │ ├── CodeFirstDemoContext.cs │ │ ├── DbSeeder.cs │ │ ├── DbServiceExtension.cs │ │ ├── Migrations │ │ │ ├── 20200914080715_InitialMigration.Designer.cs │ │ │ ├── 20200914080715_InitialMigration.cs │ │ │ └── CodeFirstDemoContextModelSnapshot.cs │ │ └── Models │ │ │ ├── InstrumentType.cs │ │ │ ├── Player.cs │ │ │ └── PlayerInstrument.cs │ ├── Dto │ │ ├── PagedResponse.cs │ │ ├── PlayerInstrument │ │ │ ├── CreatePlayerInstrumentRequest.cs │ │ │ └── GetPlayerInstrumentResponse.cs │ │ ├── Players │ │ │ ├── CreatePlayerRequest.cs │ │ │ ├── GetPlayerDetailResponse.cs │ │ │ ├── GetPlayerResponse.cs │ │ │ └── UpdatePlayerRequest.cs │ │ └── UrlQueryParameters.cs │ ├── EFCore_CodeFirst.csproj │ ├── Extensions │ │ └── PagerExtension.cs │ ├── Interfaces │ │ └── IPlayerService.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── PlayerService.cs │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json │ └── EFCore_DatabaseFirst │ ├── Db │ ├── DbFirstDemoContext.cs │ └── Person.cs │ ├── EFCore_DatabaseFirst.csproj │ └── Program.cs ├── Chapter 08 ├── Chapter_08_AADAuth │ ├── Chapter_08_AADAuth.sln │ └── Chapter_08_AADAuth │ │ ├── App.razor │ │ ├── Chapter_08_AADAuth.csproj │ │ ├── Data │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastService.cs │ │ ├── Pages │ │ ├── Calendar.razor │ │ ├── Counter.razor │ │ ├── Error.cshtml │ │ ├── FetchData.razor │ │ ├── Index.razor │ │ └── _Host.cshtml │ │ ├── Program.cs │ │ ├── Shared │ │ ├── LoginDisplay.razor │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ │ ├── Startup.cs │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ └── favicon.ico ├── Chapter_08_BasicAuthClient │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Chapter_08_BasicAuth.csproj │ └── Program.cs ├── Chapter_08_BasicAuthServer │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Chapter_08_BasicAuthServer.csproj │ ├── Controllers │ │ └── EchoController.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter_08_BearerAuthClient │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Chapter_08_BearerAuthClient.csproj │ └── Program.cs ├── Chapter_08_BearerAuthServer │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Chapter_08_BearerAuthServer.csproj │ ├── Controllers │ │ ├── EchoController.cs │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json └── Chapter_08_DB_Auth │ ├── Chapter_08_DB_Auth.sln │ └── Chapter_08_DB_Auth │ ├── Areas │ └── Identity │ │ └── Pages │ │ └── _ViewStart.cshtml │ ├── Chapter_08_DB_Auth.csproj │ ├── Controllers │ └── HomeController.cs │ ├── Data │ ├── ApplicationDbContext.cs │ └── Migrations │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ ├── serviceDependencies.json │ └── serviceDependencies.local.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-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 ├── Chapter 09 ├── Chapter_09_Docker_Examples │ ├── .dockerignore │ ├── Chap9.sln │ ├── docker-compose.dcproj │ ├── docker-compose.yml │ └── web │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── web.csproj └── Dockerfile ├── Chapter 10 └── Chapter_10_Cloud_Examples │ ├── Chapter 10 Final.csproj │ ├── Chapter 10 Final.sln │ ├── Controllers │ └── HomeController.cs │ ├── HealthCheck.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Startup.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 ├── Chapter 11 └── Chapter_11_Debug_Examples │ ├── App.razor │ ├── ApplicationStorage.cs │ ├── Chapter11.csproj │ ├── Chapter11.sln │ ├── IStorageProvider.cs │ ├── LocalStorageProvider.cs │ ├── Pages │ ├── Counter.razor │ ├── FetchData.razor │ └── Index.razor │ ├── Program.cs │ ├── SessionStorageProvider.cs │ ├── Shared │ ├── MainLayout.razor │ ├── NavMenu.razor │ └── SurveyPrompt.razor │ ├── UserState.cs │ ├── _Imports.razor │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── index.html │ ├── sample-data │ └── weather.json │ └── storageHandling.js ├── Chapter 12 └── Chapter_12_GitHubActions_Examples │ ├── App.razor │ ├── ApplicationStorage.cs │ ├── Chapter12.csproj │ ├── Chapter12.sln │ ├── IStorageProvider.cs │ ├── LocalStorageProvider.cs │ ├── Pages │ ├── Counter.razor │ ├── FetchData.razor │ └── Index.razor │ ├── Program.cs │ ├── SessionStorageProvider.cs │ ├── Shared │ ├── MainLayout.razor │ ├── NavMenu.razor │ └── SurveyPrompt.razor │ ├── UserState.cs │ ├── _Imports.razor │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── index.html │ ├── sample-data │ └── weather.json │ └── storageHandling.js ├── Chapter 13 └── Chapter_13_FileStorage │ ├── Chapter_13_FileStorage.sln │ └── Chapter_13_FileStorage │ ├── Chapter_13_FileStorage.csproj │ └── Program.cs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb.sln -------------------------------------------------------------------------------- /Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/Chapter_01_HelloWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/Chapter_01_HelloWeb.csproj -------------------------------------------------------------------------------- /Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/Program.cs -------------------------------------------------------------------------------- /Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/Startup.cs -------------------------------------------------------------------------------- /Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 01/Chapter_01_HelloWeb/Chapter_01_HelloWeb/appsettings.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Chapter_02_Certificates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Chapter_02_Certificates.csproj -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Chapter_02_Certificates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Chapter_02_Certificates.sln -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Program.cs -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Startup.cs -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/appsettings.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Certificates/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/Chapter_02_Workers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/Chapter_02_Workers.csproj -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/Chapter_02_Workers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/Chapter_02_Workers.sln -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/Program.cs -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/Worker.cs -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 02/Chapter_02_Workers/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 02/Chapter_02_Workers/appsettings.json -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/Chapter_03_DI_Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/Chapter_03_DI_Examples.sln -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Chapter_03_QuickStart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Chapter_03_QuickStart.csproj -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/AwesomeMusicManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/AwesomeMusicManager.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/IMusicManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/IMusicManager.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/INotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/INotifier.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/InstrumentalMusicManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/InstrumentalMusicManager.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/MusicManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/MusicManager.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/Notifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/DataManager/Notifier.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Models/SongModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Models/SongModel.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Program.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Startup.cs -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/appsettings.json -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 03/Chapter_03_DI_Examples/QuickStart/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/Chapter_04_RazorViewEngine_Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/Chapter_04_RazorViewEngine_Examples.sln -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/LearningRazorSyntax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/LearningRazorSyntax.csproj -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Models/BeerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Models/BeerModel.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Program.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Startup.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Home/IndexNew.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Home/IndexNew.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/appsettings.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/LearningRazorSyntax/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Controllers/TodoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Controllers/TodoController.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/Todo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/Todo.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/TodoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/TodoDbContext.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/TodoDbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Models/TodoDbSeeder.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Program.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Startup.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/ToDo.MVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/ToDo.MVC.csproj -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Create.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Delete.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Details.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Edit.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/Todo/Index.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/appsettings.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.MVC/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Data/Todo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Data/Todo.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Data/TodoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Data/TodoDbContext.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Data/TodoDbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Data/TodoDbSeeder.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Index.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Create.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Create.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Delete.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Delete.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Details.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Details.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Edit.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Edit.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Index.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/Todos/Index.cshtml.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Program.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/Startup.cs -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/ToDo.RazorPages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/ToDo.RazorPages.csproj -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/appsettings.json -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 04/Chapter_04_RazorViewEngine_Examples/ToDo.RazorPages/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/AwesomeBlazor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/AwesomeBlazor.gif -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/App.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/BlazorServer.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/BlazorServer.Web.csproj -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Data/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Data/AppState.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Data/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Data/Place.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Data/PlaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Data/PlaceService.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Error.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Index.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Main.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Spots/EditTouristSpot.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Spots/EditTouristSpot.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Spots/ViewTouristSpot.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/Spots/ViewTouristSpot.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Pages/_Host.cshtml -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Program.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/Startup.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/_Imports.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/appsettings.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorServer.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/App.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/BlazorWasm.PWA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/BlazorWasm.PWA.csproj -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Dto/CreatePlaceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Dto/CreatePlaceRequest.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Pages/FetchData.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Pages/Index.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Program.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/_Imports.razor -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/css/app.css -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/icon-512.png -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/index.html -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/manifest.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/BlazorWasm.PWA/wwwroot/service-worker.js -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Controllers/PlacesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Controllers/PlacesController.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/Images/coron_island.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/Images/coron_island.jpg -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/Images/oslob_whalesharks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/Images/oslob_whalesharks.png -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/Models/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/Models/Place.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/PlaceDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/PlaceDbContext.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/PlaceDbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/PlaceDbSeeder.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/PlaceDbServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Db/PlaceDbServiceExtension.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/PlaceApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/PlaceApi.csproj -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/PlaceApiHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/PlaceApiHub.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Program.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/Startup.cs -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/PlaceApi/appsettings.json -------------------------------------------------------------------------------- /Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/TouristSpot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 05 and 06/Chapter_05_and_06_Blazor_Examples/TouristSpot/TouristSpot.sln -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/Chapter_07_API_EFCore_Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/Chapter_07_API_EFCore_Examples.sln -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Controllers/PlayersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Controllers/PlayersController.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/CodeFirstDemoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/CodeFirstDemoContext.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/DbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/DbSeeder.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/DbServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/DbServiceExtension.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Migrations/20200914080715_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Migrations/20200914080715_InitialMigration.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Migrations/CodeFirstDemoContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Migrations/CodeFirstDemoContextModelSnapshot.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Models/InstrumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Models/InstrumentType.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Models/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Models/Player.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Models/PlayerInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Db/Models/PlayerInstrument.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/PagedResponse.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/PlayerInstrument/GetPlayerInstrumentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/PlayerInstrument/GetPlayerInstrumentResponse.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/CreatePlayerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/CreatePlayerRequest.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/GetPlayerDetailResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/GetPlayerDetailResponse.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/GetPlayerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/GetPlayerResponse.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/UpdatePlayerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/Players/UpdatePlayerRequest.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/UrlQueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Dto/UrlQueryParameters.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/EFCore_CodeFirst.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/EFCore_CodeFirst.csproj -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Extensions/PagerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Extensions/PagerExtension.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Interfaces/IPlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Interfaces/IPlayerService.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Program.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Services/PlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Services/PlayerService.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/Startup.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_CodeFirst/appsettings.json -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/Db/DbFirstDemoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/Db/DbFirstDemoContext.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/Db/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/Db/Person.cs -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/EFCore_DatabaseFirst.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/EFCore_DatabaseFirst.csproj -------------------------------------------------------------------------------- /Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 07/Chapter_07_API_EFCore_Examples/EFCore_DatabaseFirst/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth.sln -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/App.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Chapter_08_AADAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Chapter_08_AADAuth.csproj -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Data/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Data/WeatherForecastService.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Calendar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Calendar.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/FetchData.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/Index.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Pages/_Host.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/LoginDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/LoginDisplay.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/Startup.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/_Imports.razor -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/appsettings.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_AADAuth/Chapter_08_AADAuth/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthClient/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthClient/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthClient/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthClient/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthClient/Chapter_08_BasicAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthClient/Chapter_08_BasicAuth.csproj -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthClient/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/Chapter_08_BasicAuthServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/Chapter_08_BasicAuthServer.csproj -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/Controllers/EchoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/Controllers/EchoController.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/Startup.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BasicAuthServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BasicAuthServer/appsettings.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthClient/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthClient/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthClient/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthClient/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthClient/Chapter_08_BearerAuthClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthClient/Chapter_08_BearerAuthClient.csproj -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthClient/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/Chapter_08_BearerAuthServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/Chapter_08_BearerAuthServer.csproj -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/Controllers/EchoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/Controllers/EchoController.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/Startup.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_BearerAuthServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_BearerAuthServer/appsettings.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth.sln -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Chapter_08_DB_Auth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Chapter_08_DB_Auth.csproj -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Program.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Startup.cs -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/appsettings.json -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 08/Chapter_08_DB_Auth/Chapter_08_DB_Auth/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/.dockerignore -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/Chap9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/Chap9.sln -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/docker-compose.dcproj -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/docker-compose.yml -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/web/Dockerfile -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/web/Program.cs -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/web/Startup.cs -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/web/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/web/appsettings.json -------------------------------------------------------------------------------- /Chapter 09/Chapter_09_Docker_Examples/web/web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Chapter_09_Docker_Examples/web/web.csproj -------------------------------------------------------------------------------- /Chapter 09/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 09/Dockerfile -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Chapter 10 Final.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Chapter 10 Final.csproj -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Chapter 10 Final.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Chapter 10 Final.sln -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/HealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/HealthCheck.cs -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Program.cs -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Startup.cs -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/appsettings.json -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 10/Chapter_10_Cloud_Examples/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/App.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/ApplicationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/ApplicationStorage.cs -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Chapter11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Chapter11.csproj -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Chapter11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Chapter11.sln -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/IStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/IStorageProvider.cs -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/LocalStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/LocalStorageProvider.cs -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Pages/FetchData.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Pages/Index.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Program.cs -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/SessionStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/SessionStorageProvider.cs -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/UserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/UserState.cs -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/_Imports.razor -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/appsettings.json -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/app.css -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/index.html -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /Chapter 11/Chapter_11_Debug_Examples/wwwroot/storageHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 11/Chapter_11_Debug_Examples/wwwroot/storageHandling.js -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/App.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/ApplicationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/ApplicationStorage.cs -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Chapter12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Chapter12.csproj -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Chapter12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Chapter12.sln -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/IStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/IStorageProvider.cs -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/LocalStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/LocalStorageProvider.cs -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Pages/FetchData.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Pages/Index.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Program.cs -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/SessionStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/SessionStorageProvider.cs -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/UserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/UserState.cs -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/_Imports.razor -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/appsettings.json -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/app.css -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/index.html -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/storageHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 12/Chapter_12_GitHubActions_Examples/wwwroot/storageHandling.js -------------------------------------------------------------------------------- /Chapter 13/Chapter_13_FileStorage/Chapter_13_FileStorage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 13/Chapter_13_FileStorage/Chapter_13_FileStorage.sln -------------------------------------------------------------------------------- /Chapter 13/Chapter_13_FileStorage/Chapter_13_FileStorage/Chapter_13_FileStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 13/Chapter_13_FileStorage/Chapter_13_FileStorage/Chapter_13_FileStorage.csproj -------------------------------------------------------------------------------- /Chapter 13/Chapter_13_FileStorage/Chapter_13_FileStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/Chapter 13/Chapter_13_FileStorage/Chapter_13_FileStorage/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/ASP.NET-Core-5-for-Beginners/HEAD/README.md --------------------------------------------------------------------------------