├── .gitignore ├── 1. Getting Started └── HelloWorld │ ├── HelloWorld.sln │ └── src │ └── HelloWorld │ ├── HelloWorld.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ └── web.config ├── 10. MIcroservices and Docker └── Docker │ ├── .dockerignore │ ├── .gitignore │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── MonolithToMicroservices.sln │ ├── MonolithToMicroservices │ ├── .dockerignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ ├── HomeController.cs │ │ └── OrdersController.cs │ ├── Dockerfile │ ├── Infrastructure │ │ ├── HttpClient.cs │ │ └── IHttpClient.cs │ ├── Models │ │ ├── ApiResponse.cs │ │ ├── ApiSettings.cs │ │ ├── Customer.cs │ │ ├── CustomerViewModel.cs │ │ ├── IApiSettings.cs │ │ ├── Order.cs │ │ ├── PagingResult.cs │ │ └── State.cs │ ├── MonolithToMicroservices.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repository │ │ ├── CustomersRepository.cs │ │ ├── ICustomersRepository.cs │ │ ├── ILookupRepository.cs │ │ └── LookupRepository.cs │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Orders │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── app.dev.dockerfile │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── docker-compose.yml │ └── wwwroot │ │ ├── favicon.ico │ │ ├── images │ │ ├── favicon.ico │ │ ├── female.png │ │ ├── male.png │ │ └── people.png │ │ └── styles │ │ └── styles.css │ ├── README.md │ ├── Services │ ├── Customers.API │ │ ├── Controllers │ │ │ ├── CustomerOrdersApiController.cs │ │ │ └── CustomersApiController.cs │ │ ├── Customers.API.csproj │ │ ├── Customers.API.dev.dockerfile │ │ ├── Customers.sqlite │ │ ├── Dockerfile │ │ ├── Models │ │ │ ├── ApiResponse.cs │ │ │ ├── Customer.cs │ │ │ ├── Order.cs │ │ │ ├── PagingResult.cs │ │ │ └── State.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repository │ │ │ ├── CustomerOrdersRepository.cs │ │ │ ├── CustomersDbContext.cs │ │ │ ├── CustomersDbSeeder.cs │ │ │ ├── CustomersRepository.cs │ │ │ ├── ICustomerOrdersRepository.cs │ │ │ ├── ICustomersRepository.cs │ │ │ ├── IOrdersRepository.cs │ │ │ └── OrdersRepository.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── Lookup.API │ │ ├── .dockerignore │ │ ├── Controllers │ │ └── LookupApiController.cs │ │ ├── Dockerfile │ │ ├── Lookup.API.csproj │ │ ├── Lookup.API.dev.dockerfile │ │ ├── Lookup.sqlite │ │ ├── Models │ │ ├── ApiResponse.cs │ │ └── State.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Repository │ │ ├── ILookupRepository.cs │ │ ├── LookupDbContext.cs │ │ ├── LookupRepository.cs │ │ └── LookupsDbSeeder.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── docker-compose.dcproj │ ├── docker-compose.override.yml │ └── docker-compose.yml ├── 2. Configuration └── UsingConfiguration │ ├── UsingConfiguration.sln │ └── UsingConfiguration │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── UsingConfiguration.csproj │ ├── appsettings.json │ ├── appsettings.production.json │ └── appsettings.staging.json ├── 3. Dependency Injection ├── ConfiguringServices │ ├── ConfiguringServices.sln │ └── src │ │ └── ConfiguringServices │ │ ├── ConfiguringServices.csproj │ │ ├── Controllers │ │ └── DataServiceController.cs │ │ ├── Filters │ │ └── CustomErrorFilter.cs │ │ ├── Models │ │ └── Customer.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── Startup.cs └── UsingDependencyInjection │ ├── UsingDependencyInjection.sln │ └── src │ ├── BizRules │ ├── BizRules.csproj │ ├── Calculator.cs │ ├── ICalculator.cs │ ├── IScoped.cs │ ├── ITransient.cs │ ├── Scoped.cs │ └── Transient.cs │ └── UsingDependencyInjection │ ├── Controllers │ └── HomeController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── UsingDependencyInjection.csproj │ ├── ViewModels │ └── DIViewModel.cs │ ├── Views │ └── Home │ │ └── Index.cshtml │ └── web.config ├── 4. Middleware ├── CustomMiddleware │ ├── CustomMiddleware.sln │ └── src │ │ └── CustomMiddleware │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── CustomMiddleware.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── UserAgentLoggerMiddleware.cs │ │ └── appsettings.json ├── UsingMVCMiddleware │ ├── UsingMVCMiddleware.sln │ └── src │ │ └── UsingMVCMiddleware │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ └── UsingMVCMiddleware.csproj ├── UsingMVCRoutes │ ├── UsingMVCRoutes.sln │ └── src │ │ └── UsingMVCRoutes │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── UsingMVCRoutes.csproj │ │ └── Views │ │ └── Home │ │ └── Index.cshtml └── UsingMapWithMiddleware │ ├── UsingMapWithMiddleware.sln │ └── src │ └── UsingMapWithMiddleware │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ └── UsingMapWithMiddleware.csproj ├── 5. Controllers └── WebApi │ ├── WebApi.sln │ └── src │ └── WebApi │ ├── Controllers │ ├── DataServiceController.cs │ └── HomeController.cs │ ├── Filters │ └── CustomErrorFilter.cs │ ├── Models │ └── Customer.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ └── Home │ │ └── Index.cshtml │ ├── WebApi.csproj │ └── wwwroot │ └── js │ ├── libs │ └── jquery.js │ └── main.js ├── 6. Views └── TagHelpersAndViewComponents │ ├── TagHelpersAndViewComponents.sln │ └── src │ └── TagHelpersAndViewComponents │ ├── Controllers │ └── HomeController.cs │ ├── Models │ └── Person.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── TagHelpers │ ├── CustomerCardTagHelper.cs │ └── MapTagHelper.cs │ ├── TagHelpersAndViewComponents.csproj │ ├── ViewComponents │ └── CustomersViewComponent.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Components │ │ │ └── Customers │ │ │ │ └── Default.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.json │ └── wwwroot │ ├── _references.js │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── 8. Security ├── CookieAuthentication │ ├── CookieAuthentication.sln │ └── CookieAuthentication │ │ ├── Controllers │ │ ├── AccountController.cs │ │ └── HomeController.cs │ │ ├── CookieAuthentication.csproj │ │ ├── CookieValidator.cs │ │ ├── Models │ │ └── ErrorViewModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Account │ │ │ └── Forbidden.cshtml │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ └── _ViewImports.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── readme.md │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── OAuth │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Authentication │ │ └── OAuthConfiguration.cs │ ├── Controllers │ │ ├── AuthenticationController.cs │ │ ├── CustomersController.cs │ │ └── HomeController.cs │ ├── Models │ │ ├── Customer.cs │ │ ├── ErrorViewModel.cs │ │ └── OAuthUser.cs │ ├── OAuth.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── readme.md │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map └── UsingIdentity │ ├── UsingIdentity.sln │ └── UsingIdentity │ ├── Areas │ └── Identity │ │ ├── IdentityHostingStartup.cs │ │ └── Pages │ │ ├── Account │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Controllers │ └── HomeController.cs │ ├── Data │ ├── ApplicationDbContext.cs │ └── RolesData.cs │ ├── Migrations │ ├── 20180803171536_initialize.Designer.cs │ ├── 20180803171536_initialize.cs │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ ├── ApplicationUser.cs │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ScaffoldingReadme.txt │ ├── Security │ └── ApplicationClaimsPrincipalFactory.cs │ ├── Startup.cs │ ├── UsingIdentity.csproj │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── readme.md │ ├── solvedIssues.md │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── 9. EntityFramework ├── EFCRUD │ ├── EFCRUD.sln │ └── EFCRUD │ │ ├── Controllers │ │ └── MoviesController.cs │ │ ├── EFCRUD.csproj │ │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── Movie.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Repository │ │ ├── IMoviesRepository.cs │ │ ├── MoviesDbContext.cs │ │ ├── MoviesDbSeeder.cs │ │ └── MoviesRepository.cs │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Movies │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── readme.md │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map └── EFCore │ ├── EFCore.sln │ └── src │ └── EFCore │ ├── Controllers │ ├── DistributorsController.cs │ └── HomeController.cs │ ├── EFCore.csproj │ ├── Models │ ├── Distributor.cs │ └── Movie.cs │ ├── Movies.sqlite │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Repository │ ├── IMoviesRepository.cs │ ├── MoviesDbContext.cs │ ├── MoviesRepository.cs │ └── Seeder.cs │ ├── Startup.cs │ ├── Views │ ├── Distributors │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.json │ └── wwwroot │ ├── _references.js │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Labs ├── Creating And Using Custom Middleware │ └── End │ │ ├── CreatingAndUsingCustomMiddleware.sln │ │ └── CreatingAndUsingCustomMiddleware │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── CreatingAndUsingCustomMiddleware.csproj │ │ ├── Middleware │ │ └── CustomMiddleware.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Monolith to Microservices │ ├── Begin │ │ ├── Microservices │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── MonolithToMicroservices.sln │ │ │ ├── MonolithToMicroservices │ │ │ │ ├── .dockerignore │ │ │ │ ├── .vscode │ │ │ │ │ ├── launch.json │ │ │ │ │ └── tasks.json │ │ │ │ ├── Controllers │ │ │ │ │ ├── HomeController.cs │ │ │ │ │ └── OrdersController.cs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── HttpClient.cs │ │ │ │ │ └── IHttpClient.cs │ │ │ │ ├── Models │ │ │ │ │ ├── ApiResponse.cs │ │ │ │ │ ├── ApiSettings.cs │ │ │ │ │ ├── Customer.cs │ │ │ │ │ ├── CustomerViewModel.cs │ │ │ │ │ ├── IApiSettings.cs │ │ │ │ │ ├── Order.cs │ │ │ │ │ ├── PagingResult.cs │ │ │ │ │ └── State.cs │ │ │ │ ├── MonolithToMicroservices.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── Repository │ │ │ │ │ ├── CustomersRepository.cs │ │ │ │ │ ├── ICustomersRepository.cs │ │ │ │ │ ├── ILookupRepository.cs │ │ │ │ │ └── LookupRepository.cs │ │ │ │ ├── Startup.cs │ │ │ │ ├── Views │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── Create.cshtml │ │ │ │ │ │ ├── Delete.cshtml │ │ │ │ │ │ ├── Details.cshtml │ │ │ │ │ │ ├── Edit.cshtml │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── Orders │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ │ └── _Layout.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ ├── app.dev.dockerfile │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── docker-compose.yml │ │ │ │ └── wwwroot │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── images │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── female.png │ │ │ │ │ ├── male.png │ │ │ │ │ └── people.png │ │ │ │ │ └── styles │ │ │ │ │ └── styles.css │ │ │ ├── README.md │ │ │ ├── Services │ │ │ │ ├── Customers.API │ │ │ │ │ ├── Controllers │ │ │ │ │ │ ├── CustomerOrdersApiController.cs │ │ │ │ │ │ └── CustomersApiController.cs │ │ │ │ │ ├── Customers.API.csproj │ │ │ │ │ ├── Customers.API.dev.dockerfile │ │ │ │ │ ├── Customers.sqlite │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ApiResponse.cs │ │ │ │ │ │ ├── Customer.cs │ │ │ │ │ │ ├── Order.cs │ │ │ │ │ │ ├── PagingResult.cs │ │ │ │ │ │ └── State.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── launchSettings.json │ │ │ │ │ ├── Repository │ │ │ │ │ │ ├── CustomerOrdersRepository.cs │ │ │ │ │ │ ├── CustomersDbContext.cs │ │ │ │ │ │ ├── CustomersDbSeeder.cs │ │ │ │ │ │ ├── CustomersRepository.cs │ │ │ │ │ │ ├── ICustomerOrdersRepository.cs │ │ │ │ │ │ ├── ICustomersRepository.cs │ │ │ │ │ │ ├── IOrdersRepository.cs │ │ │ │ │ │ └── OrdersRepository.cs │ │ │ │ │ ├── Startup.cs │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ └── appsettings.json │ │ │ │ └── Lookup.API │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Controllers │ │ │ │ │ └── LookupApiController.cs │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Lookup.API.csproj │ │ │ │ │ ├── Lookup.API.dev.dockerfile │ │ │ │ │ ├── Lookup.sqlite │ │ │ │ │ ├── Models │ │ │ │ │ ├── ApiResponse.cs │ │ │ │ │ └── State.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ │ ├── Repository │ │ │ │ │ ├── ILookupRepository.cs │ │ │ │ │ ├── LookupDbContext.cs │ │ │ │ │ ├── LookupRepository.cs │ │ │ │ │ └── LookupsDbSeeder.cs │ │ │ │ │ ├── Startup.cs │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ └── appsettings.json │ │ │ ├── docker-compose.dcproj │ │ │ ├── docker-compose.override.yml │ │ │ └── docker-compose.yml │ │ └── Monolithic │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ │ ├── MonolithToMicroservices.sln │ │ │ ├── MonolithToMicroservices │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── Controllers │ │ │ │ ├── HomeController.cs │ │ │ │ └── OrdersController.cs │ │ │ ├── Customers.sqlite │ │ │ ├── Models │ │ │ │ ├── Customer.cs │ │ │ │ ├── CustomerViewModel.cs │ │ │ │ ├── Order.cs │ │ │ │ ├── PagingResult.cs │ │ │ │ └── State.cs │ │ │ ├── MonolithToMicroservices.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Repository │ │ │ │ ├── CustomersDbContext.cs │ │ │ │ ├── CustomersDbSeeder.cs │ │ │ │ ├── CustomersRepository.cs │ │ │ │ ├── ICustomersRepository.cs │ │ │ │ ├── ILookupRepository.cs │ │ │ │ ├── IOrdersRepository.cs │ │ │ │ ├── LookupRepository.cs │ │ │ │ └── OrdersRepository.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ ├── Create.cshtml │ │ │ │ │ ├── Delete.cshtml │ │ │ │ │ ├── Details.cshtml │ │ │ │ │ ├── Edit.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Orders │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── aspnetcore.development.dockerfile │ │ │ ├── docker-compose.yml │ │ │ └── wwwroot │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── female.png │ │ │ │ ├── male.png │ │ │ │ └── people.png │ │ │ │ └── styles │ │ │ │ └── styles.css │ │ │ └── README.md │ └── End │ │ └── Microservices │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── MonolithToMicroservices.sln │ │ ├── MonolithToMicroservices │ │ ├── .dockerignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── OrdersController.cs │ │ ├── Dockerfile │ │ ├── Infrastructure │ │ │ ├── HttpClient.cs │ │ │ └── IHttpClient.cs │ │ ├── Models │ │ │ ├── ApiResponse.cs │ │ │ ├── ApiSettings.cs │ │ │ ├── Customer.cs │ │ │ ├── CustomerViewModel.cs │ │ │ ├── IApiSettings.cs │ │ │ ├── Order.cs │ │ │ ├── PagingResult.cs │ │ │ └── State.cs │ │ ├── MonolithToMicroservices.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repository │ │ │ ├── CustomersRepository.cs │ │ │ ├── ICustomersRepository.cs │ │ │ ├── ILookupRepository.cs │ │ │ └── LookupRepository.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Orders │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── app.dev.dockerfile │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── docker-compose.yml │ │ └── wwwroot │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── female.png │ │ │ ├── male.png │ │ │ └── people.png │ │ │ └── styles │ │ │ └── styles.css │ │ ├── README.md │ │ ├── Services │ │ ├── Customers.API │ │ │ ├── Controllers │ │ │ │ ├── CustomerOrdersApiController.cs │ │ │ │ └── CustomersApiController.cs │ │ │ ├── Customers.API.csproj │ │ │ ├── Customers.API.dev.dockerfile │ │ │ ├── Customers.sqlite │ │ │ ├── Dockerfile │ │ │ ├── Models │ │ │ │ ├── ApiResponse.cs │ │ │ │ ├── Customer.cs │ │ │ │ ├── Order.cs │ │ │ │ ├── PagingResult.cs │ │ │ │ └── State.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Repository │ │ │ │ ├── CustomerOrdersRepository.cs │ │ │ │ ├── CustomersDbContext.cs │ │ │ │ ├── CustomersDbSeeder.cs │ │ │ │ ├── CustomersRepository.cs │ │ │ │ ├── ICustomerOrdersRepository.cs │ │ │ │ ├── ICustomersRepository.cs │ │ │ │ ├── IOrdersRepository.cs │ │ │ │ └── OrdersRepository.cs │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── Lookup.API │ │ │ ├── .dockerignore │ │ │ ├── Controllers │ │ │ └── LookupApiController.cs │ │ │ ├── Dockerfile │ │ │ ├── Lookup.API.csproj │ │ │ ├── Lookup.API.dev.dockerfile │ │ │ ├── Lookup.sqlite │ │ │ ├── Models │ │ │ ├── ApiResponse.cs │ │ │ └── State.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Repository │ │ │ ├── ILookupRepository.cs │ │ │ ├── LookupDbContext.cs │ │ │ ├── LookupRepository.cs │ │ │ └── LookupsDbSeeder.cs │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── docker-compose.dcproj │ │ ├── docker-compose.override.yml │ │ └── docker-compose.yml ├── Orchestrating Containers with Docker Compose │ ├── Begin │ │ ├── .gitignore │ │ ├── AspNetCorePostgreSQLDockerApp.sln │ │ ├── AspNetCorePostgreSQLDockerApp │ │ │ ├── .docker │ │ │ │ └── wait-for-postgres.sh │ │ │ ├── APIs │ │ │ │ └── CustomersServiceController.cs │ │ │ ├── AspNetCorePostgreSQLDockerApp.csproj │ │ │ ├── Controllers │ │ │ │ ├── CustomersController.cs │ │ │ │ └── HomeController.cs │ │ │ ├── Models │ │ │ │ ├── Customer.cs │ │ │ │ ├── DockerCommand.cs │ │ │ │ ├── DockerCommandExample.cs │ │ │ │ ├── Order.cs │ │ │ │ └── State.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Repository │ │ │ │ ├── CustomersDbContext.cs │ │ │ │ ├── CustomersDbSeeder.cs │ │ │ │ ├── CustomersRepository.cs │ │ │ │ ├── DockerCommandsDbContext.cs │ │ │ │ ├── DockerCommandsDbSeeder.cs │ │ │ │ ├── DockerCommandsRepository.cs │ │ │ │ ├── ICustomersRepository.cs │ │ │ │ └── IDockerCommandsRepository.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Customers │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Home │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.json │ │ │ ├── aspnetcore.dockerfile │ │ │ ├── bundleconfig.json │ │ │ ├── docker-compose.yml │ │ │ ├── gulpfile.js │ │ │ ├── package.json │ │ │ ├── tsconfig.json │ │ │ ├── web.config │ │ │ └── wwwroot │ │ │ │ ├── _references.js │ │ │ │ ├── app │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── app.routing.ts │ │ │ │ ├── customers │ │ │ │ │ ├── customers.component.html │ │ │ │ │ └── customers.component.ts │ │ │ │ ├── main.ts │ │ │ │ └── shared │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ └── services │ │ │ │ │ └── data.service.ts │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── ASP-NET-Banners-01.png │ │ │ │ ├── ASP-NET-Banners-02.png │ │ │ │ ├── Banner-01-Azure.png │ │ │ │ ├── Banner-02-VS.png │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ │ ├── index2.html │ │ │ │ ├── js │ │ │ │ ├── site.js │ │ │ │ ├── site.min.js │ │ │ │ └── site.min.js.map │ │ │ │ ├── systemjs.config.js │ │ │ │ └── web.config │ │ └── README.md │ └── End │ │ ├── .gitignore │ │ ├── AspNetCorePostgreSQLDockerApp.sln │ │ ├── AspNetCorePostgreSQLDockerApp │ │ ├── .docker │ │ │ └── wait-for-postgres.sh │ │ ├── APIs │ │ │ └── CustomersServiceController.cs │ │ ├── AspNetCorePostgreSQLDockerApp.csproj │ │ ├── Controllers │ │ │ ├── CustomersController.cs │ │ │ └── HomeController.cs │ │ ├── Models │ │ │ ├── Customer.cs │ │ │ ├── DockerCommand.cs │ │ │ ├── DockerCommandExample.cs │ │ │ ├── Order.cs │ │ │ └── State.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repository │ │ │ ├── CustomersDbContext.cs │ │ │ ├── CustomersDbSeeder.cs │ │ │ ├── CustomersRepository.cs │ │ │ ├── DockerCommandsDbContext.cs │ │ │ ├── DockerCommandsDbSeeder.cs │ │ │ ├── DockerCommandsRepository.cs │ │ │ ├── ICustomersRepository.cs │ │ │ └── IDockerCommandsRepository.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Customers │ │ │ │ └── Index.cshtml │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ ├── aspnetcore.dockerfile │ │ ├── bundleconfig.json │ │ ├── docker-compose.yml │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── web.config │ │ └── wwwroot │ │ │ ├── _references.js │ │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routing.ts │ │ │ ├── customers │ │ │ │ ├── customers.component.html │ │ │ │ └── customers.component.ts │ │ │ ├── main.ts │ │ │ └── shared │ │ │ │ ├── interfaces.ts │ │ │ │ └── services │ │ │ │ └── data.service.ts │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── ASP-NET-Banners-01.png │ │ │ ├── ASP-NET-Banners-02.png │ │ │ ├── Banner-01-Azure.png │ │ │ ├── Banner-02-VS.png │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ ├── banner3.svg │ │ │ └── banner4.svg │ │ │ ├── index2.html │ │ │ ├── js │ │ │ ├── site.js │ │ │ ├── site.min.js │ │ │ └── site.min.js.map │ │ │ ├── systemjs.config.js │ │ │ └── web.config │ │ └── README.md ├── Using Entity Framework Core │ └── End │ │ ├── UsingEntityFrameworkCore.sln │ │ └── UsingEntityFrameworkCore │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Models │ │ └── Customer.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Repository │ │ ├── CustomersDbContext.cs │ │ ├── CustomersRepository.cs │ │ └── ICustomersRepository.cs │ │ ├── Startup.cs │ │ ├── UsingEntityFrameworkCore.csproj │ │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ ├── customers.sqlite │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Using Web API │ └── End │ │ ├── UsingWebAPI.sln │ │ └── UsingWebAPI │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Models │ │ └── Customer.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── UsingWebAPI.csproj │ │ └── appsettings.json └── Working with ASP.NET Core Images and Containers │ └── End │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── ASPNET-Core-And-Docker.csproj │ ├── ASPNET-Core-And-Docker.sln │ ├── Controllers │ └── HomeController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── dist │ ├── ASPNET-Core-And-Docker.Views.dll │ ├── ASPNET-Core-And-Docker.deps.json │ ├── ASPNET-Core-And-Docker.dll │ ├── ASPNET-Core-And-Docker.runtimeconfig.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── web.config │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── docker-compose.prod.yml │ ├── docker-compose.yml │ ├── linus.prod.dockerfile │ ├── linux.dev.dockerfile │ ├── windows.dev.dockerfile │ ├── windows.prod.dockerfile │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/.gitignore -------------------------------------------------------------------------------- /1. Getting Started/HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/1. Getting Started/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /1. Getting Started/HelloWorld/src/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/1. Getting Started/HelloWorld/src/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /1. Getting Started/HelloWorld/src/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/1. Getting Started/HelloWorld/src/HelloWorld/Program.cs -------------------------------------------------------------------------------- /1. Getting Started/HelloWorld/src/HelloWorld/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/1. Getting Started/HelloWorld/src/HelloWorld/Properties/launchSettings.json -------------------------------------------------------------------------------- /1. Getting Started/HelloWorld/src/HelloWorld/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/1. Getting Started/HelloWorld/src/HelloWorld/Startup.cs -------------------------------------------------------------------------------- /1. Getting Started/HelloWorld/src/HelloWorld/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/1. Getting Started/HelloWorld/src/HelloWorld/web.config -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/.dockerignore -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/.gitignore -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/.vscode/launch.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/.vscode/tasks.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices.sln -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/.dockerignore -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/.vscode/launch.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/.vscode/tasks.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Controllers/HomeController.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Dockerfile -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Infrastructure/HttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Infrastructure/HttpClient.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Infrastructure/IHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Infrastructure/IHttpClient.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/ApiResponse.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/ApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/ApiSettings.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/Customer.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/CustomerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/CustomerViewModel.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/IApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/IApiSettings.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/Order.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/PagingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/PagingResult.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Models/State.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/MonolithToMicroservices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/MonolithToMicroservices.csproj -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Program.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Properties/launchSettings.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/CustomersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/CustomersRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/ICustomersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/ICustomersRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/ILookupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/ILookupRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/LookupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Repository/LookupRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Startup.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Create.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Delete.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Details.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Edit.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Orders/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Orders/Index.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/app.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/app.dev.dockerfile -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/appsettings.Development.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/appsettings.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/docker-compose.yml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/favicon.ico -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/favicon.ico -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/female.png -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/male.png -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/images/people.png -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/MonolithToMicroservices/wwwroot/styles/styles.css -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/README.md: -------------------------------------------------------------------------------- 1 | # Angular, ASP.NET Core Customers Service Application 2 | -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Customers.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Customers.API.csproj -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Customers.API.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Customers.API.dev.dockerfile -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Customers.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Customers.sqlite -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Dockerfile -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Models/ApiResponse.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Models/Customer.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Models/Order.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Models/PagingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Models/PagingResult.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Models/State.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Program.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/CustomersDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/CustomersDbContext.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/CustomersDbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/CustomersDbSeeder.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/CustomersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/CustomersRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/ICustomersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/ICustomersRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/IOrdersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/IOrdersRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/OrdersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Repository/OrdersRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/Startup.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/appsettings.Development.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Customers.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Customers.API/appsettings.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/.dockerignore -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Controllers/LookupApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Controllers/LookupApiController.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Dockerfile -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Lookup.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Lookup.API.csproj -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Lookup.API.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Lookup.API.dev.dockerfile -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Lookup.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Lookup.sqlite -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Models/ApiResponse.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Models/State.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Program.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/ILookupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/ILookupRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/LookupDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/LookupDbContext.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/LookupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/LookupRepository.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/LookupsDbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Repository/LookupsDbSeeder.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/Startup.cs -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/appsettings.Development.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/Services/Lookup.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/Services/Lookup.API/appsettings.json -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/docker-compose.dcproj -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/docker-compose.override.yml -------------------------------------------------------------------------------- /10. MIcroservices and Docker/Docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/10. MIcroservices and Docker/Docker/docker-compose.yml -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration.sln -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/Program.cs -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/Properties/launchSettings.json -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/Startup.cs -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/UsingConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/UsingConfiguration.csproj -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/appsettings.json -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/appsettings.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/appsettings.production.json -------------------------------------------------------------------------------- /2. Configuration/UsingConfiguration/UsingConfiguration/appsettings.staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/2. Configuration/UsingConfiguration/UsingConfiguration/appsettings.staging.json -------------------------------------------------------------------------------- /3. Dependency Injection/ConfiguringServices/ConfiguringServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/ConfiguringServices/ConfiguringServices.sln -------------------------------------------------------------------------------- /3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/ConfiguringServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/ConfiguringServices.csproj -------------------------------------------------------------------------------- /3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/Models/Customer.cs -------------------------------------------------------------------------------- /3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/Program.cs -------------------------------------------------------------------------------- /3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/ConfiguringServices/src/ConfiguringServices/Startup.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/UsingDependencyInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/UsingDependencyInjection.sln -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/BizRules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/BizRules.csproj -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/Calculator.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/ICalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/ICalculator.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/IScoped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/IScoped.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/ITransient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/ITransient.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/Scoped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/Scoped.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/BizRules/Transient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/BizRules/Transient.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/UsingDependencyInjection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/UsingDependencyInjection/Program.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/UsingDependencyInjection/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/UsingDependencyInjection/Startup.cs -------------------------------------------------------------------------------- /3. Dependency Injection/UsingDependencyInjection/src/UsingDependencyInjection/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/3. Dependency Injection/UsingDependencyInjection/src/UsingDependencyInjection/web.config -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/CustomMiddleware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/CustomMiddleware.sln -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/Controllers/HomeController.cs -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/CustomMiddleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/CustomMiddleware.csproj -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/Program.cs -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/Properties/launchSettings.json -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/Startup.cs -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/UserAgentLoggerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/UserAgentLoggerMiddleware.cs -------------------------------------------------------------------------------- /4. Middleware/CustomMiddleware/src/CustomMiddleware/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/CustomMiddleware/src/CustomMiddleware/appsettings.json -------------------------------------------------------------------------------- /4. Middleware/UsingMVCMiddleware/UsingMVCMiddleware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCMiddleware/UsingMVCMiddleware.sln -------------------------------------------------------------------------------- /4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Controllers/HomeController.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Program.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Properties/launchSettings.json -------------------------------------------------------------------------------- /4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/Startup.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/UsingMVCMiddleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCMiddleware/src/UsingMVCMiddleware/UsingMVCMiddleware.csproj -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/UsingMVCRoutes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCRoutes/UsingMVCRoutes.sln -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Controllers/HomeController.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Program.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Properties/launchSettings.json -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Startup.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/UsingMVCRoutes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/UsingMVCRoutes.csproj -------------------------------------------------------------------------------- /4. Middleware/UsingMVCRoutes/src/UsingMVCRoutes/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Home Page"; 3 | } 4 |

Hello from the Default Route!

5 | -------------------------------------------------------------------------------- /4. Middleware/UsingMapWithMiddleware/UsingMapWithMiddleware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMapWithMiddleware/UsingMapWithMiddleware.sln -------------------------------------------------------------------------------- /4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/Program.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/Properties/launchSettings.json -------------------------------------------------------------------------------- /4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/Startup.cs -------------------------------------------------------------------------------- /4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/UsingMapWithMiddleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/4. Middleware/UsingMapWithMiddleware/src/UsingMapWithMiddleware/UsingMapWithMiddleware.csproj -------------------------------------------------------------------------------- /5. Controllers/WebApi/WebApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/WebApi.sln -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Controllers/DataServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Controllers/DataServiceController.cs -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Controllers/HomeController.cs -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Filters/CustomErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Filters/CustomErrorFilter.cs -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Models/Customer.cs -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Program.cs -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Startup.cs -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/WebApi.csproj -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/wwwroot/js/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/wwwroot/js/libs/jquery.js -------------------------------------------------------------------------------- /5. Controllers/WebApi/src/WebApi/wwwroot/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/5. Controllers/WebApi/src/WebApi/wwwroot/js/main.js -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/TagHelpersAndViewComponents.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/TagHelpersAndViewComponents.sln -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Models/Person.cs -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Program.cs -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Startup.cs -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/TagHelpers/MapTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/TagHelpers/MapTagHelper.cs -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Home/About.cshtml -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/appsettings.json -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/_references.js -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/css/site.css -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/favicon.ico -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /6. Views/TagHelpersAndViewComponents/src/TagHelpersAndViewComponents/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication.sln -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Controllers/AccountController.cs -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Controllers/HomeController.cs -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/CookieAuthentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/CookieAuthentication.csproj -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/CookieValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/CookieValidator.cs -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Program.cs -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Properties/launchSettings.json -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Startup.cs -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Views/Account/Forbidden.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Views/Account/Forbidden.cshtml -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/appsettings.Development.json -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/appsettings.json -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/readme.md -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/css/site.css -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/favicon.ico -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/js/site.js -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/CookieAuthentication/CookieAuthentication/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /8. Security/OAuth/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/.vscode/launch.json -------------------------------------------------------------------------------- /8. Security/OAuth/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/.vscode/tasks.json -------------------------------------------------------------------------------- /8. Security/OAuth/Authentication/OAuthConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Authentication/OAuthConfiguration.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Controllers/AuthenticationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Controllers/AuthenticationController.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Controllers/HomeController.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Models/Customer.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Models/OAuthUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Models/OAuthUser.cs -------------------------------------------------------------------------------- /8. Security/OAuth/OAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/OAuth.csproj -------------------------------------------------------------------------------- /8. Security/OAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Program.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Properties/launchSettings.json -------------------------------------------------------------------------------- /8. Security/OAuth/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Startup.cs -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Home/About.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /8. Security/OAuth/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/appsettings.Development.json -------------------------------------------------------------------------------- /8. Security/OAuth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/appsettings.json -------------------------------------------------------------------------------- /8. Security/OAuth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/readme.md -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/css/site.css -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/favicon.ico -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/js/site.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /8. Security/OAuth/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/OAuth/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity.sln -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/Account/_ViewImports.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Controllers/HomeController.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Data/RolesData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Data/RolesData.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Migrations/20180803171536_initialize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Migrations/20180803171536_initialize.Designer.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Migrations/20180803171536_initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Migrations/20180803171536_initialize.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Program.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Properties/launchSettings.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/ScaffoldingReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/ScaffoldingReadme.txt -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Security/ApplicationClaimsPrincipalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Security/ApplicationClaimsPrincipalFactory.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Startup.cs -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/UsingIdentity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/UsingIdentity.csproj -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/appsettings.Development.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/appsettings.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/readme.md -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/solvedIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/solvedIssues.md -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/css/site.css -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/favicon.ico -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/js/site.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/8. Security/UsingIdentity/UsingIdentity/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD.sln -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Controllers/MoviesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Controllers/MoviesController.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/EFCRUD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/EFCRUD.csproj -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Models/Movie.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Program.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Properties/launchSettings.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Repository/IMoviesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Repository/IMoviesRepository.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Repository/MoviesDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Repository/MoviesDbContext.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Repository/MoviesDbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Repository/MoviesDbSeeder.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Repository/MoviesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Repository/MoviesRepository.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Startup.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Create.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Delete.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Details.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Edit.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Movies/Index.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/appsettings.Development.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/appsettings.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/readme.md -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/css/site.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/js/site.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCRUD/EFCRUD/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/EFCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/EFCore.sln -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Controllers/DistributorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Controllers/DistributorsController.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Controllers/HomeController.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/EFCore.csproj -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Models/Distributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Models/Distributor.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Models/Movie.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Movies.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Movies.sqlite -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Program.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Repository/IMoviesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Repository/IMoviesRepository.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Repository/MoviesDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Repository/MoviesDbContext.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Repository/MoviesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Repository/MoviesRepository.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Repository/Seeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Repository/Seeder.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Startup.cs -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/Distributors/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/Distributors/Index.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/appsettings.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/_references.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/css/site.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/favicon.ico -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/9. EntityFramework/EFCore/src/EFCore/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware.sln -------------------------------------------------------------------------------- /Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware/Program.cs -------------------------------------------------------------------------------- /Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware/Startup.cs -------------------------------------------------------------------------------- /Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Creating And Using Custom Middleware/End/CreatingAndUsingCustomMiddleware/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/.dockerignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/.gitignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices.sln -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/.dockerignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Models/Order.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/app.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/app.dev.dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/MonolithToMicroservices/docker-compose.yml -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/README.md: -------------------------------------------------------------------------------- 1 | # Angular, ASP.NET Core Customers Service Application 2 | -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Customers.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Customers.sqlite -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Models/Order.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Customers.API/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/.dockerignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Lookup.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Lookup.API.csproj -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Lookup.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Lookup.sqlite -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Models/ApiResponse.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/Services/Lookup.API/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/docker-compose.dcproj -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/docker-compose.override.yml -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Microservices/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Microservices/docker-compose.yml -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/.gitignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices.sln -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Customers.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Customers.sqlite -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Models/Order.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/docker-compose.yml -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/Begin/Monolithic/MonolithToMicroservices/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/Begin/Monolithic/README.md: -------------------------------------------------------------------------------- 1 | # Angular, ASP.NET Core Customers Service Application 2 | -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/.dockerignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/.gitignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices.sln -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/.dockerignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Models/Order.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/app.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/app.dev.dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/docker-compose.yml -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/MonolithToMicroservices/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/README.md: -------------------------------------------------------------------------------- 1 | # Angular, ASP.NET Core Customers Service Application 2 | -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Customers.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Customers.API.csproj -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Customers.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Customers.sqlite -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/ApiResponse.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/Order.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Customers.API/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/.dockerignore -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Dockerfile -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Lookup.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Lookup.API.csproj -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Lookup.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Lookup.sqlite -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Models/ApiResponse.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Models/State.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Program.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/Startup.cs -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/Services/Lookup.API/appsettings.json -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/docker-compose.dcproj -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/docker-compose.override.yml -------------------------------------------------------------------------------- /Labs/Monolith to Microservices/End/Microservices/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Monolith to Microservices/End/Microservices/docker-compose.yml -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/Begin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Orchestrating Containers with Docker Compose/Begin/.gitignore -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/Begin/AspNetCorePostgreSQLDockerApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Orchestrating Containers with Docker Compose/Begin/AspNetCorePostgreSQLDockerApp.sln -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/Begin/AspNetCorePostgreSQLDockerApp/aspnetcore.dockerfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/Begin/AspNetCorePostgreSQLDockerApp/docker-compose.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/Begin/AspNetCorePostgreSQLDockerApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/Begin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Orchestrating Containers with Docker Compose/Begin/README.md -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/End/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Orchestrating Containers with Docker Compose/End/.gitignore -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/End/AspNetCorePostgreSQLDockerApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Orchestrating Containers with Docker Compose/End/AspNetCorePostgreSQLDockerApp.sln -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/End/AspNetCorePostgreSQLDockerApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Orchestrating Containers with Docker Compose/End/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Orchestrating Containers with Docker Compose/End/README.md -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore.sln -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Program.cs -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Startup.cs -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/UsingEntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/UsingEntityFrameworkCore.csproj -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/appsettings.json -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/customers.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/customers.sqlite -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Entity Framework Core/End/UsingEntityFrameworkCore/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI.sln -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/Models/Customer.cs -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/Program.cs -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/Startup.cs -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/UsingWebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/UsingWebAPI.csproj -------------------------------------------------------------------------------- /Labs/Using Web API/End/UsingWebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Using Web API/End/UsingWebAPI/appsettings.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/ASPNET-Core-And-Docker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/ASPNET-Core-And-Docker.csproj -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/ASPNET-Core-And-Docker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/ASPNET-Core-And-Docker.sln -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Program.cs -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Startup.cs -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/appsettings.Development.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/appsettings.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/ASPNET-Core-And-Docker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/ASPNET-Core-And-Docker.dll -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/appsettings.Development.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/appsettings.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/web.config -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/dist/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/docker-compose.prod.yml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/docker-compose.yml -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/linus.prod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/linus.prod.dockerfile -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/linux.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/linux.dev.dockerfile -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/windows.dev.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/windows.dev.dockerfile -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/windows.prod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/windows.prod.dockerfile -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/Labs/Working with ASP.NET Core Images and Containers/End/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/ASP.NETCoreDemos/HEAD/README.md --------------------------------------------------------------------------------