├── .gitignore ├── LICENSE ├── Labs ├── 1. Introduction to the .NET Core SDK.md ├── 2. MVC Applications with ASP.NET Core.md ├── 3. Startup, Hosting and Middleware.md ├── 4. Dependency Injection & Unit Testing.md ├── 4.5 Building Middleware.md ├── 5. Logging and Diagnostics.md ├── 6. Working with Razor Tag Helpers.md ├── 7. Single Page Applications.md ├── 7.5 App building - Attendee List.md ├── 8. APIs with MVC Core.md ├── 8.1 Hosting & Deployment.md ├── Code │ ├── App │ │ ├── AttendeeList.sln │ │ └── AttendeeList │ │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ │ ├── AttendeeList.csproj │ │ │ ├── Controllers │ │ │ ├── AttendeesApiController.cs │ │ │ ├── AttendeesController.cs │ │ │ └── PlatformController.cs │ │ │ ├── Formatters │ │ │ └── VCardFormatter.cs │ │ │ ├── Models │ │ │ ├── Attendee.cs │ │ │ └── WorkshopContext.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Attendees │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ └── _ViewImports.cshtml │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── 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 │ ├── Lab1 │ │ └── MyNewApp │ │ │ ├── MyNewApp.csproj │ │ │ └── Program.cs │ ├── Lab2A │ │ ├── Lab2A.sln │ │ └── src │ │ │ └── Lab2A │ │ │ ├── Areas │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── PeopleController.cs │ │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ └── Migrations │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ ├── 20170116070549_Person Class.Designer.cs │ │ │ │ ├── 20170116070549_Person Class.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── Lab2A.csproj │ │ │ ├── Models │ │ │ ├── ApplicationUser.cs │ │ │ └── Person.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Services │ │ │ ├── IEmailSender.cs │ │ │ ├── ISmsSender.cs │ │ │ └── MessageServices.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── People │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.json │ │ │ ├── bundleconfig.json │ │ │ ├── libman.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 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ └── package.json │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── package.json │ │ │ └── jquery │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── Lab2B │ │ ├── Lab2B.sln │ │ └── src │ │ │ └── Lab2 │ │ │ ├── Lab2.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab2C │ │ ├── Lab2C.sln │ │ └── src │ │ │ └── Lab2 │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Lab2.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab3 │ │ ├── Lab3.sln │ │ └── src │ │ │ └── Lab3 │ │ │ ├── Lab3.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab4A │ │ ├── Lab4A.sln │ │ └── src │ │ │ └── Lab4A │ │ │ ├── Lab4A.csproj │ │ │ ├── Middleware │ │ │ └── RequestIdMiddleware.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Services │ │ │ └── RequestId.cs │ │ │ └── Startup.cs │ ├── Lab4B │ │ ├── Lab4B.sln │ │ └── src │ │ │ ├── Lab4B.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── RequestCultureMiddleware.cs │ │ │ ├── RequestCultureOptions.cs │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── config.json │ ├── Lab5A │ │ ├── Lab5A.sln │ │ └── src │ │ │ └── Lab5A │ │ │ ├── Lab5A.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab5B │ │ ├── Lab5B.sln │ │ └── src │ │ │ └── Lab5B │ │ │ ├── Lab5B.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── logfile.txt │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab5C │ │ ├── Lab5C.sln │ │ └── src │ │ │ └── Lab5C │ │ │ ├── Lab5C.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── logfile.txt │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab5D │ │ ├── Lab5D.sln │ │ └── src │ │ │ └── Lab5D │ │ │ ├── Lab5D.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── logfile.txt │ │ │ └── wwwroot │ │ │ └── index.html │ ├── Lab6 │ │ ├── Lab6.sln │ │ └── src │ │ │ └── Lab6 │ │ │ ├── Areas │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ └── Migrations │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ │ ├── Lab6.csproj │ │ │ ├── Models │ │ │ └── ApplicationUser.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── RepeatTagHelper.cs │ │ │ ├── Services │ │ │ ├── IEmailSender.cs │ │ │ ├── ISmsSender.cs │ │ │ └── MessageServices.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.json │ │ │ ├── bundleconfig.json │ │ │ ├── libman.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 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ └── package.json │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── package.json │ │ │ └── jquery │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── Lab7 │ │ ├── .gitignore │ │ ├── ClientApp │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── angular.json │ │ │ ├── e2e │ │ │ │ ├── protractor.conf.js │ │ │ │ ├── src │ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ │ └── app.po.ts │ │ │ │ └── tsconfig.e2e.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.css │ │ │ │ │ ├── app.component.html │ │ │ │ │ ├── app.component.ts │ │ │ │ │ ├── app.module.ts │ │ │ │ │ ├── app.server.module.ts │ │ │ │ │ ├── counter │ │ │ │ │ │ ├── counter.component.html │ │ │ │ │ │ ├── counter.component.spec.ts │ │ │ │ │ │ └── counter.component.ts │ │ │ │ │ ├── fetch-data │ │ │ │ │ │ ├── fetch-data.component.html │ │ │ │ │ │ └── fetch-data.component.ts │ │ │ │ │ ├── home │ │ │ │ │ │ ├── home.component.html │ │ │ │ │ │ └── home.component.ts │ │ │ │ │ └── nav-menu │ │ │ │ │ │ ├── nav-menu.component.css │ │ │ │ │ │ ├── nav-menu.component.html │ │ │ │ │ │ └── nav-menu.component.ts │ │ │ │ ├── assets │ │ │ │ │ └── .gitkeep │ │ │ │ ├── browserslist │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── index.html │ │ │ │ ├── karma.conf.js │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ ├── styles.css │ │ │ │ ├── test.ts │ │ │ │ ├── tsconfig.app.json │ │ │ │ ├── tsconfig.server.json │ │ │ │ ├── tsconfig.spec.json │ │ │ │ └── tslint.json │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── Controllers │ │ │ └── SampleDataController.cs │ │ ├── Lab7.csproj │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ └── favicon.ico │ └── Lab8 │ │ ├── Lab8.sln │ │ └── src │ │ └── Lab8 │ │ ├── Controllers │ │ └── ProductsController.cs │ │ ├── Lab8.csproj │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── Startup.cs └── Images │ ├── install-nuget-package.png │ ├── new-webapp-individual-accounts.PNG │ └── run-with-kestrel.png ├── README.md ├── Slides ├── Intro to ASPNET Core.pptx ├── MVC Applications with ASP.NET Core.pptx └── Single Page Applications.pptx ├── notes ├── 1. Intro to .NET Core ├── 2. MVC Applications with ASP.NET Core.md ├── 3. Introduction to ASP.NET Core.md └── davidnotes.md └── outline.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /Labs/1. Introduction to the .NET Core SDK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/1. Introduction to the .NET Core SDK.md -------------------------------------------------------------------------------- /Labs/2. MVC Applications with ASP.NET Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/2. MVC Applications with ASP.NET Core.md -------------------------------------------------------------------------------- /Labs/3. Startup, Hosting and Middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/3. Startup, Hosting and Middleware.md -------------------------------------------------------------------------------- /Labs/4. Dependency Injection & Unit Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/4. Dependency Injection & Unit Testing.md -------------------------------------------------------------------------------- /Labs/4.5 Building Middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/4.5 Building Middleware.md -------------------------------------------------------------------------------- /Labs/5. Logging and Diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/5. Logging and Diagnostics.md -------------------------------------------------------------------------------- /Labs/6. Working with Razor Tag Helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/6. Working with Razor Tag Helpers.md -------------------------------------------------------------------------------- /Labs/7. Single Page Applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/7. Single Page Applications.md -------------------------------------------------------------------------------- /Labs/7.5 App building - Attendee List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/7.5 App building - Attendee List.md -------------------------------------------------------------------------------- /Labs/8. APIs with MVC Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/8. APIs with MVC Core.md -------------------------------------------------------------------------------- /Labs/8.1 Hosting & Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/8.1 Hosting & Deployment.md -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList.sln -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/.vscode/launch.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/.vscode/tasks.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/AttendeeList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/AttendeeList.csproj -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Controllers/AttendeesApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Controllers/AttendeesApiController.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Controllers/PlatformController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Controllers/PlatformController.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Formatters/VCardFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Formatters/VCardFormatter.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Models/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Models/Attendee.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Models/WorkshopContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Models/WorkshopContext.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Program.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Views/Attendees/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Views/Attendees/Create.cshtml -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Views/Attendees/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Views/Attendees/Delete.cshtml -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Views/Attendees/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Views/Attendees/Details.cshtml -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Views/Attendees/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Views/Attendees/Edit.cshtml -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Views/Attendees/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Views/Attendees/Index.cshtml -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/appsettings.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Labs/Code/App/AttendeeList/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/App/AttendeeList/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Labs/Code/Lab1/MyNewApp/MyNewApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab1/MyNewApp/MyNewApp.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab1/MyNewApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab1/MyNewApp/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/Lab2A.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/Lab2A.sln -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Controllers/PeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Controllers/PeopleController.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Data/Migrations/20170116070549_Person Class.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Data/Migrations/20170116070549_Person Class.Designer.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Data/Migrations/20170116070549_Person Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Data/Migrations/20170116070549_Person Class.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Lab2A.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Lab2A.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Models/Person.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Services/IEmailSender.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Services/ISmsSender.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Services/MessageServices.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/People/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/People/Create.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/People/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/People/Delete.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/People/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/People/Details.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/People/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/People/Edit.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/People/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/People/Index.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/appsettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/bundleconfig.json -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/libman.json -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/core.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.slim.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2A/src/Lab2A/wwwroot/lib/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /Labs/Code/Lab2B/Lab2B.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2B/Lab2B.sln -------------------------------------------------------------------------------- /Labs/Code/Lab2B/src/Lab2/Lab2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2B/src/Lab2/Lab2.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab2B/src/Lab2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2B/src/Lab2/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2B/src/Lab2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2B/src/Lab2/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab2B/src/Lab2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2B/src/Lab2/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2B/src/Lab2/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello from configuration" 3 | } -------------------------------------------------------------------------------- /Labs/Code/Lab2B/src/Lab2/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2B/src/Lab2/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab2C/Lab2C.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/Lab2C.sln -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/src/Lab2/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/Lab2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/src/Lab2/Lab2.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/src/Lab2/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/src/Lab2/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/src/Lab2/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello from configuration" 3 | } -------------------------------------------------------------------------------- /Labs/Code/Lab2C/src/Lab2/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab2C/src/Lab2/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab3/Lab3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab3/Lab3.sln -------------------------------------------------------------------------------- /Labs/Code/Lab3/src/Lab3/Lab3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab3/src/Lab3/Lab3.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab3/src/Lab3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab3/src/Lab3/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab3/src/Lab3/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab3/src/Lab3/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab3/src/Lab3/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab3/src/Lab3/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab3/src/Lab3/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello from configuration" 3 | } -------------------------------------------------------------------------------- /Labs/Code/Lab3/src/Lab3/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab3/src/Lab3/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab4A/Lab4A.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/Lab4A.sln -------------------------------------------------------------------------------- /Labs/Code/Lab4A/src/Lab4A/Lab4A.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/src/Lab4A/Lab4A.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab4A/src/Lab4A/Middleware/RequestIdMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/src/Lab4A/Middleware/RequestIdMiddleware.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4A/src/Lab4A/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/src/Lab4A/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4A/src/Lab4A/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/src/Lab4A/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab4A/src/Lab4A/Services/RequestId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/src/Lab4A/Services/RequestId.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4A/src/Lab4A/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4A/src/Lab4A/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4B/Lab4B.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/Lab4B.sln -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/Lab4B.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/Lab4B.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/RequestCultureMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/RequestCultureMiddleware.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/RequestCultureOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/RequestCultureOptions.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/appsettings.Development.json -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab4B/src/appsettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab4B/src/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "culture": "en-US" 3 | } 4 | -------------------------------------------------------------------------------- /Labs/Code/Lab5A/Lab5A.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/Lab5A.sln -------------------------------------------------------------------------------- /Labs/Code/Lab5A/src/Lab5A/Lab5A.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/src/Lab5A/Lab5A.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab5A/src/Lab5A/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/src/Lab5A/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5A/src/Lab5A/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/src/Lab5A/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab5A/src/Lab5A/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/src/Lab5A/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5A/src/Lab5A/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/src/Lab5A/appsettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab5A/src/Lab5A/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5A/src/Lab5A/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab5B/Lab5B.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/Lab5B.sln -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/Lab5B.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/src/Lab5B/Lab5B.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/src/Lab5B/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/src/Lab5B/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/src/Lab5B/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello from configuration" 3 | } -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/src/Lab5B/logfile.txt -------------------------------------------------------------------------------- /Labs/Code/Lab5B/src/Lab5B/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5B/src/Lab5B/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab5C/Lab5C.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/Lab5C.sln -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/Lab5C.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/src/Lab5C/Lab5C.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/src/Lab5C/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/src/Lab5C/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/src/Lab5C/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello from configuration" 3 | } -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/src/Lab5C/logfile.txt -------------------------------------------------------------------------------- /Labs/Code/Lab5C/src/Lab5C/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5C/src/Lab5C/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab5D/Lab5D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/Lab5D.sln -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/Lab5D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/src/Lab5D/Lab5D.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/src/Lab5D/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/src/Lab5D/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/src/Lab5D/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello from configuration" 3 | } -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/src/Lab5D/logfile.txt -------------------------------------------------------------------------------- /Labs/Code/Lab5D/src/Lab5D/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab5D/src/Lab5D/wwwroot/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab6/Lab6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/Lab6.sln -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Lab6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Lab6.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/RepeatTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/RepeatTagHelper.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Services/IEmailSender.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Services/ISmsSender.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Services/MessageServices.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/appsettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/bundleconfig.json -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/libman.json -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/css/site.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/core.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.slim.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab6/src/Lab6/wwwroot/lib/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /Labs/Code/Lab7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/.gitignore -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/.gitignore -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/README.md -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/angular.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/package.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/app.component.css -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/app.server.module.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/counter/counter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/counter/counter.component.html -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/counter/counter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/counter/counter.component.spec.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/counter/counter.component.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/fetch-data/fetch-data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/fetch-data/fetch-data.component.html -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/fetch-data/fetch-data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/fetch-data/fetch-data.component.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/nav-menu/nav-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/nav-menu/nav-menu.component.css -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/app/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/app/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/browserslist -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/index.html -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/tsconfig.server.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/ClientApp/tslint.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/Controllers/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Controllers/SampleDataController.cs -------------------------------------------------------------------------------- /Labs/Code/Lab7/Lab7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Lab7.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab7/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Pages/Error.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab7/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Labs/Code/Lab7/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Labs/Code/Lab7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab7/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/Startup.cs -------------------------------------------------------------------------------- /Labs/Code/Lab7/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/appsettings.Development.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/appsettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab7/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab7/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Labs/Code/Lab8/Lab8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/Lab8.sln -------------------------------------------------------------------------------- /Labs/Code/Lab8/src/Lab8/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/src/Lab8/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Labs/Code/Lab8/src/Lab8/Lab8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/src/Lab8/Lab8.csproj -------------------------------------------------------------------------------- /Labs/Code/Lab8/src/Lab8/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/src/Lab8/Models/Product.cs -------------------------------------------------------------------------------- /Labs/Code/Lab8/src/Lab8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/src/Lab8/Program.cs -------------------------------------------------------------------------------- /Labs/Code/Lab8/src/Lab8/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/src/Lab8/Properties/launchSettings.json -------------------------------------------------------------------------------- /Labs/Code/Lab8/src/Lab8/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Code/Lab8/src/Lab8/Startup.cs -------------------------------------------------------------------------------- /Labs/Images/install-nuget-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Images/install-nuget-package.png -------------------------------------------------------------------------------- /Labs/Images/new-webapp-individual-accounts.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Images/new-webapp-individual-accounts.PNG -------------------------------------------------------------------------------- /Labs/Images/run-with-kestrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Labs/Images/run-with-kestrel.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/README.md -------------------------------------------------------------------------------- /Slides/Intro to ASPNET Core.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Slides/Intro to ASPNET Core.pptx -------------------------------------------------------------------------------- /Slides/MVC Applications with ASP.NET Core.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Slides/MVC Applications with ASP.NET Core.pptx -------------------------------------------------------------------------------- /Slides/Single Page Applications.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/Slides/Single Page Applications.pptx -------------------------------------------------------------------------------- /notes/1. Intro to .NET Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/notes/1. Intro to .NET Core -------------------------------------------------------------------------------- /notes/2. MVC Applications with ASP.NET Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/notes/2. MVC Applications with ASP.NET Core.md -------------------------------------------------------------------------------- /notes/3. Introduction to ASP.NET Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/notes/3. Introduction to ASP.NET Core.md -------------------------------------------------------------------------------- /notes/davidnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/notes/davidnotes.md -------------------------------------------------------------------------------- /outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-presentations/aspnetcore-concepts-workshop/HEAD/outline.md --------------------------------------------------------------------------------