├── .gitignore ├── All ├── .vs │ └── config │ │ └── applicationhost.config ├── All.sln ├── src │ ├── Configuration │ │ ├── Configuration.csproj │ │ ├── GreetingMiddleware.cs │ │ ├── Messsages.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SecretNumber.cs │ │ ├── Startup.cs │ │ └── config.json │ ├── Controllers │ │ ├── Controllers.csproj │ │ ├── Controllers │ │ │ ├── HelloController.cs │ │ │ ├── HiddenJson.cs │ │ │ ├── PostToMe.cs │ │ │ ├── RequestController.cs │ │ │ └── StreamController.cs │ │ ├── Models │ │ │ └── Movie.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Results │ │ │ └── TransientFileResult.cs │ │ ├── Startup.cs │ │ ├── TagHelpers │ │ │ └── OtcHiddenJson.cs │ │ ├── Views │ │ │ ├── HiddenJson │ │ │ │ └── Index.cshtml │ │ │ ├── PostToMe │ │ │ │ └── Index.cshtml │ │ │ ├── Request │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Stream │ │ │ │ ├── FileStream.cshtml │ │ │ │ └── StaticFile.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── wwwroot │ │ │ └── sample.mp4 │ ├── Middleware │ │ ├── HowNextWorks.cs │ │ ├── Middleware.csproj │ │ ├── Middleware │ │ │ ├── FaultyMiddleware.cs │ │ │ ├── RequestLoggerMiddleware.cs │ │ │ ├── SayHelloMiddleware.cs │ │ │ └── SayHelloOptions.cs │ │ ├── Owin │ │ │ └── OwinHello.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ └── wwwroot │ │ │ ├── hello.foo │ │ │ └── hello.txt │ ├── Movies │ │ ├── ApiControllers │ │ │ └── MoviesController.cs │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Entities │ │ │ ├── Movie.cs │ │ │ └── Review.cs │ │ ├── Movies.csproj │ │ ├── Pages │ │ │ ├── Secrets.cshtml │ │ │ ├── Secrets.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Services │ │ │ ├── IKeyVaultCrypto.cs │ │ │ ├── KeyVaultCrypto.cs │ │ │ └── MovieDb.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Delete.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── web.config │ ├── ProtectStatic │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ProtectFolder.cs │ │ ├── ProtectStatic.csproj │ │ ├── Startup.cs │ │ └── wwwroot │ │ │ └── secret │ │ │ └── secretpage.html │ ├── Verlet │ │ ├── BlazorBsp.sln │ │ └── BlazorBsp │ │ │ ├── App.razor │ │ │ ├── BlazorBsp.csproj │ │ │ ├── Models │ │ │ ├── AnchorParticle.cs │ │ │ ├── Constraint.cs │ │ │ ├── Force.cs │ │ │ ├── Particle.cs │ │ │ ├── Point.cs │ │ │ ├── Rope.cs │ │ │ ├── Scene.cs │ │ │ └── SceneOptions.cs │ │ │ ├── Pages │ │ │ ├── Index.razor │ │ │ └── Index.razor.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Services │ │ │ └── AlarmClock.cs │ │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ └── NavMenu.razor │ │ │ ├── Startup.cs │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── open-iconic │ │ │ │ ├── FONT-LICENSE │ │ │ │ ├── ICON-LICENSE │ │ │ │ ├── README.md │ │ │ │ └── font │ │ │ │ │ ├── css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ │ └── fonts │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ └── site.css │ │ │ └── index.html │ └── WorkingMvc6 │ │ ├── CompilationLog.cs │ │ ├── Components │ │ └── EnvironmentViewComponent.cs │ │ ├── Controllers │ │ ├── ContextController.cs │ │ ├── HelloController.cs │ │ ├── HomeController.cs │ │ ├── MovieController.cs │ │ ├── PocoController.cs │ │ ├── RenderTemplate.cs │ │ └── ViewController.cs │ │ ├── Middleware │ │ └── CoutingMiddleware.cs │ │ ├── Pages │ │ ├── Secrets.cshtml │ │ └── Secrets.cshtml.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ └── Greeter.cs │ │ ├── Startup.cs │ │ ├── TagHelpers │ │ └── MyEnvironment.cs │ │ ├── Views │ │ ├── Hello │ │ │ └── Services.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Movie │ │ │ ├── Index.cshtml │ │ │ └── TIme.cshtml │ │ ├── RenderTemplate │ │ │ ├── Index.cshtml │ │ │ └── PatientTemplate.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ └── Environment │ │ │ │ │ └── Development.cshtml │ │ │ └── _Layout.cshtml │ │ ├── View │ │ │ ├── BaseView.cs │ │ │ ├── Injects.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── WorkingMvc6.csproj │ │ ├── client │ │ └── foo.html │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── wwwroot │ │ └── foo.html └── test │ ├── TestTheTest │ ├── TestInMemory │ │ ├── CustomWebFactory.cs │ │ ├── DumpDbNameMiddleware.cs │ │ ├── SomeDbContext.cs │ │ ├── SomeEntity.cs │ │ ├── Startup.cs │ │ ├── TestInMemory.csproj │ │ └── TestStartup.cs │ ├── TestTheTest.sln │ └── run.cmd │ └── Tests │ ├── AppConfig.cs │ ├── DependencyInjection.cs │ ├── EmptyServer.cs │ ├── Middleware │ └── SimpleMiddlewareTests.cs │ ├── Tests.csproj │ └── appsettings.json ├── LICENSE ├── OdeToFood ├── .vs │ └── config │ │ └── applicationhost.config ├── OdeToFood.sln └── OdeToFood │ ├── Controllers │ ├── AboutController.cs │ ├── AccountController.cs │ └── HomeController.cs │ ├── Data │ └── OdeToFoodDbContext.cs │ ├── Middleware │ └── ApplicationBuilderExtensions.cs │ ├── Migrations │ ├── 20171002184057_InitialCreate.Designer.cs │ ├── 20171002184057_InitialCreate.cs │ └── OdeToFoodDbContextModelSnapshot.cs │ ├── Models │ ├── CuisineType.cs │ └── Restaurant.cs │ ├── OdeToFood.csproj │ ├── Pages │ ├── Account │ │ ├── SignedOut.cshtml │ │ └── SignedOut.cshtml.cs │ ├── Greeting.cshtml │ ├── Greeting.cshtml.cs │ ├── Restaurants │ │ ├── Edit.cshtml │ │ └── Edit.cshtml.cs │ ├── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── IGreeter.cs │ ├── IRestaurantData.cs │ ├── InMemoryRestaurantData.cs │ └── SqlRestaurantData.cs │ ├── Startup.cs │ ├── ViewComponents │ ├── GreeterViewComponent.cs │ └── LoginLogoutViewComponent.cs │ ├── ViewModels │ ├── HomeIndexViewModel.cs │ └── RestaurantEditModel.cs │ ├── Views │ ├── Home │ │ ├── Create.cshtml │ │ ├── Details.cshtml │ │ ├── Index.cshtml │ │ └── _Summary.cshtml │ ├── Shared │ │ ├── Components │ │ │ ├── Greeter │ │ │ │ └── Default.cshtml │ │ │ └── LoginLogout │ │ │ │ └── Default.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── package.json │ └── wwwroot │ └── index.html ├── OdeToFood2 ├── .vscode │ ├── launch.json │ └── tasks.json ├── OdeToFood2.Core │ ├── Entities │ │ ├── CuisineType.cs │ │ └── Restaurant.cs │ └── OdeToFood2.Core.csproj ├── OdeToFood2.Data │ ├── DevelopmentDbContextFactory.cs │ ├── IFoodData.cs │ ├── InMemoryRestaurantData.cs │ ├── Migrations │ │ ├── 20181018143038_FirstMigration.Designer.cs │ │ ├── 20181018143038_FirstMigration.cs │ │ └── OdeToFoodDbModelSnapshot.cs │ ├── OdeToFood2.Data.csproj │ ├── OdeToFoodDb.cs │ └── SqlRestaurantData.cs ├── OdeToFood2.sln └── OdeToFood2 │ ├── Api │ └── RestaurantsController.cs │ ├── OdeToFood2.csproj │ ├── Pages │ ├── About.cshtml │ ├── About.cshtml.cs │ ├── Contact.cshtml │ ├── Contact.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Restaurants │ │ ├── ClientRestaurants.cshtml │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Detail.cshtml │ │ ├── Detail.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── List.cshtml │ │ ├── List.cshtml.cs │ │ ├── NotFound.cshtml │ │ ├── _Summary.cshtml │ │ └── _ViewImports.cshtml │ ├── Shared │ │ ├── Components │ │ │ └── RestaurantCount │ │ │ │ └── Default.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── ViewComponents │ └── RestaurantCountViewComponent.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── package-lock.json │ ├── package.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/.gitignore -------------------------------------------------------------------------------- /All/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /All/All.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/All.sln -------------------------------------------------------------------------------- /All/src/Configuration/Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/Configuration.csproj -------------------------------------------------------------------------------- /All/src/Configuration/GreetingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/GreetingMiddleware.cs -------------------------------------------------------------------------------- /All/src/Configuration/Messsages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/Messsages.cs -------------------------------------------------------------------------------- /All/src/Configuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/Program.cs -------------------------------------------------------------------------------- /All/src/Configuration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/Configuration/SecretNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/SecretNumber.cs -------------------------------------------------------------------------------- /All/src/Configuration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/Startup.cs -------------------------------------------------------------------------------- /All/src/Configuration/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Configuration/config.json -------------------------------------------------------------------------------- /All/src/Controllers/Controllers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Controllers.csproj -------------------------------------------------------------------------------- /All/src/Controllers/Controllers/HelloController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Controllers/HelloController.cs -------------------------------------------------------------------------------- /All/src/Controllers/Controllers/HiddenJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Controllers/HiddenJson.cs -------------------------------------------------------------------------------- /All/src/Controllers/Controllers/PostToMe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Controllers/PostToMe.cs -------------------------------------------------------------------------------- /All/src/Controllers/Controllers/RequestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Controllers/RequestController.cs -------------------------------------------------------------------------------- /All/src/Controllers/Controllers/StreamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Controllers/StreamController.cs -------------------------------------------------------------------------------- /All/src/Controllers/Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Models/Movie.cs -------------------------------------------------------------------------------- /All/src/Controllers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Program.cs -------------------------------------------------------------------------------- /All/src/Controllers/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/Controllers/Results/TransientFileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Results/TransientFileResult.cs -------------------------------------------------------------------------------- /All/src/Controllers/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Startup.cs -------------------------------------------------------------------------------- /All/src/Controllers/TagHelpers/OtcHiddenJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/TagHelpers/OtcHiddenJson.cs -------------------------------------------------------------------------------- /All/src/Controllers/Views/HiddenJson/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/HiddenJson/Index.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/PostToMe/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/PostToMe/Index.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/Request/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/Request/Index.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/Stream/FileStream.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/Stream/FileStream.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/Stream/StaticFile.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/Stream/StaticFile.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /All/src/Controllers/wwwroot/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Controllers/wwwroot/sample.mp4 -------------------------------------------------------------------------------- /All/src/Middleware/HowNextWorks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/HowNextWorks.cs -------------------------------------------------------------------------------- /All/src/Middleware/Middleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Middleware.csproj -------------------------------------------------------------------------------- /All/src/Middleware/Middleware/FaultyMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Middleware/FaultyMiddleware.cs -------------------------------------------------------------------------------- /All/src/Middleware/Middleware/RequestLoggerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Middleware/RequestLoggerMiddleware.cs -------------------------------------------------------------------------------- /All/src/Middleware/Middleware/SayHelloMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Middleware/SayHelloMiddleware.cs -------------------------------------------------------------------------------- /All/src/Middleware/Middleware/SayHelloOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Middleware/SayHelloOptions.cs -------------------------------------------------------------------------------- /All/src/Middleware/Owin/OwinHello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Owin/OwinHello.cs -------------------------------------------------------------------------------- /All/src/Middleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Program.cs -------------------------------------------------------------------------------- /All/src/Middleware/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/Middleware/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/Startup.cs -------------------------------------------------------------------------------- /All/src/Middleware/wwwroot/hello.foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Middleware/wwwroot/hello.foo -------------------------------------------------------------------------------- /All/src/Middleware/wwwroot/hello.txt: -------------------------------------------------------------------------------- 1 | Hello from a text file! -------------------------------------------------------------------------------- /All/src/Movies/ApiControllers/MoviesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/ApiControllers/MoviesController.cs -------------------------------------------------------------------------------- /All/src/Movies/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Controllers/HomeController.cs -------------------------------------------------------------------------------- /All/src/Movies/Entities/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Entities/Movie.cs -------------------------------------------------------------------------------- /All/src/Movies/Entities/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Entities/Review.cs -------------------------------------------------------------------------------- /All/src/Movies/Movies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Movies.csproj -------------------------------------------------------------------------------- /All/src/Movies/Pages/Secrets.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Pages/Secrets.cshtml -------------------------------------------------------------------------------- /All/src/Movies/Pages/Secrets.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Pages/Secrets.cshtml.cs -------------------------------------------------------------------------------- /All/src/Movies/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /All/src/Movies/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Program.cs -------------------------------------------------------------------------------- /All/src/Movies/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/Movies/Services/IKeyVaultCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Services/IKeyVaultCrypto.cs -------------------------------------------------------------------------------- /All/src/Movies/Services/KeyVaultCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Services/KeyVaultCrypto.cs -------------------------------------------------------------------------------- /All/src/Movies/Services/MovieDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Services/MovieDb.cs -------------------------------------------------------------------------------- /All/src/Movies/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Startup.cs -------------------------------------------------------------------------------- /All/src/Movies/Views/Home/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Views/Home/Delete.cshtml -------------------------------------------------------------------------------- /All/src/Movies/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /All/src/Movies/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /All/src/Movies/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /All/src/Movies/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /All/src/Movies/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/appsettings.json -------------------------------------------------------------------------------- /All/src/Movies/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Movies/web.config -------------------------------------------------------------------------------- /All/src/ProtectStatic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/ProtectStatic/Program.cs -------------------------------------------------------------------------------- /All/src/ProtectStatic/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/ProtectStatic/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/ProtectStatic/ProtectFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/ProtectStatic/ProtectFolder.cs -------------------------------------------------------------------------------- /All/src/ProtectStatic/ProtectStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/ProtectStatic/ProtectStatic.csproj -------------------------------------------------------------------------------- /All/src/ProtectStatic/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/ProtectStatic/Startup.cs -------------------------------------------------------------------------------- /All/src/ProtectStatic/wwwroot/secret/secretpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/ProtectStatic/wwwroot/secret/secretpage.html -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp.sln -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/App.razor -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/BlazorBsp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/BlazorBsp.csproj -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/AnchorParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/AnchorParticle.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/Constraint.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/Force.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/Force.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/Particle.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/Point.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/Rope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/Rope.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/Scene.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Models/SceneOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Models/SceneOptions.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Pages/Index.razor -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Pages/Index.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Pages/Index.razor.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Program.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Services/AlarmClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Services/AlarmClock.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Shared/MainLayout.razor -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Shared/NavMenu.razor -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/Startup.cs -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/_Imports.razor -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/css/site.css -------------------------------------------------------------------------------- /All/src/Verlet/BlazorBsp/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/Verlet/BlazorBsp/wwwroot/index.html -------------------------------------------------------------------------------- /All/src/WorkingMvc6/CompilationLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/CompilationLog.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Components/EnvironmentViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Components/EnvironmentViewComponent.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/ContextController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/ContextController.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/HelloController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/HelloController.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/HomeController.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/MovieController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/MovieController.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/PocoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/PocoController.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/RenderTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/RenderTemplate.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Controllers/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Controllers/ViewController.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Middleware/CoutingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Middleware/CoutingMiddleware.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Pages/Secrets.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Pages/Secrets.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Pages/Secrets.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Pages/Secrets.cshtml.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Program.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Properties/launchSettings.json -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Services/Greeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Services/Greeter.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Startup.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/TagHelpers/MyEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/TagHelpers/MyEnvironment.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/Hello/Services.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/Hello/Services.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/Movie/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/Movie/Index.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/Movie/TIme.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/Movie/TIme.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/RenderTemplate/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/RenderTemplate/Index.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/RenderTemplate/PatientTemplate.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/RenderTemplate/PatientTemplate.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/Shared/Components/Environment/Development.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/Shared/Components/Environment/Development.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/View/BaseView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/View/BaseView.cs -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/View/Injects.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/View/Injects.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/View/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /All/src/WorkingMvc6/WorkingMvc6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/WorkingMvc6.csproj -------------------------------------------------------------------------------- /All/src/WorkingMvc6/client/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/client/foo.html -------------------------------------------------------------------------------- /All/src/WorkingMvc6/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/gulpfile.js -------------------------------------------------------------------------------- /All/src/WorkingMvc6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/package.json -------------------------------------------------------------------------------- /All/src/WorkingMvc6/wwwroot/foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/src/WorkingMvc6/wwwroot/foo.html -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/CustomWebFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/CustomWebFactory.cs -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/DumpDbNameMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/DumpDbNameMiddleware.cs -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/SomeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/SomeDbContext.cs -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/SomeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/SomeEntity.cs -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/Startup.cs -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/TestInMemory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/TestInMemory.csproj -------------------------------------------------------------------------------- /All/test/TestTheTest/TestInMemory/TestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestInMemory/TestStartup.cs -------------------------------------------------------------------------------- /All/test/TestTheTest/TestTheTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/TestTheTest.sln -------------------------------------------------------------------------------- /All/test/TestTheTest/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/TestTheTest/run.cmd -------------------------------------------------------------------------------- /All/test/Tests/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/Tests/AppConfig.cs -------------------------------------------------------------------------------- /All/test/Tests/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/Tests/DependencyInjection.cs -------------------------------------------------------------------------------- /All/test/Tests/EmptyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/Tests/EmptyServer.cs -------------------------------------------------------------------------------- /All/test/Tests/Middleware/SimpleMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/Tests/Middleware/SimpleMiddlewareTests.cs -------------------------------------------------------------------------------- /All/test/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/Tests/Tests.csproj -------------------------------------------------------------------------------- /All/test/Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/All/test/Tests/appsettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/LICENSE -------------------------------------------------------------------------------- /OdeToFood/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /OdeToFood/OdeToFood.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood.sln -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Controllers/AboutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Controllers/AboutController.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Controllers/AccountController.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Controllers/HomeController.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Data/OdeToFoodDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Data/OdeToFoodDbContext.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Middleware/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Middleware/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Migrations/20171002184057_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Migrations/20171002184057_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Migrations/20171002184057_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Migrations/20171002184057_InitialCreate.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Migrations/OdeToFoodDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Migrations/OdeToFoodDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Models/CuisineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Models/CuisineType.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Models/Restaurant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Models/Restaurant.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/OdeToFood.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/OdeToFood.csproj -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/Account/SignedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/Account/SignedOut.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/Account/SignedOut.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/Account/SignedOut.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/Greeting.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/Greeting.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/Greeting.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/Greeting.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/Restaurants/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/Restaurants/Edit.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/Restaurants/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/Restaurants/Edit.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Program.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Properties/launchSettings.json -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Services/IGreeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Services/IGreeter.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Services/IRestaurantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Services/IRestaurantData.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Services/InMemoryRestaurantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Services/InMemoryRestaurantData.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Services/SqlRestaurantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Services/SqlRestaurantData.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Startup.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/ViewComponents/GreeterViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/ViewComponents/GreeterViewComponent.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/ViewComponents/LoginLogoutViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/ViewComponents/LoginLogoutViewComponent.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/ViewModels/HomeIndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/ViewModels/HomeIndexViewModel.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/ViewModels/RestaurantEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/ViewModels/RestaurantEditModel.cs -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Home/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Home/Create.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Home/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Home/Details.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Home/_Summary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Home/_Summary.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Shared/Components/Greeter/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Shared/Components/Greeter/Default.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Shared/Components/LoginLogout/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Shared/Components/LoginLogout/Default.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/appsettings.Development.json -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/appsettings.json -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/package.json -------------------------------------------------------------------------------- /OdeToFood/OdeToFood/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood/OdeToFood/wwwroot/index.html -------------------------------------------------------------------------------- /OdeToFood2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/.vscode/launch.json -------------------------------------------------------------------------------- /OdeToFood2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/.vscode/tasks.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Core/Entities/CuisineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Core/Entities/CuisineType.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Core/Entities/Restaurant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Core/Entities/Restaurant.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Core/OdeToFood2.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Core/OdeToFood2.Core.csproj -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/DevelopmentDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/DevelopmentDbContextFactory.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/IFoodData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/IFoodData.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/InMemoryRestaurantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/InMemoryRestaurantData.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/Migrations/20181018143038_FirstMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/Migrations/20181018143038_FirstMigration.Designer.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/Migrations/20181018143038_FirstMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/Migrations/20181018143038_FirstMigration.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/Migrations/OdeToFoodDbModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/Migrations/OdeToFoodDbModelSnapshot.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/OdeToFood2.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/OdeToFood2.Data.csproj -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/OdeToFoodDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/OdeToFoodDb.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.Data/SqlRestaurantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.Data/SqlRestaurantData.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2.sln -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Api/RestaurantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Api/RestaurantsController.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/OdeToFood2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/OdeToFood2.csproj -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/About.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Contact.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Error.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Index.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/ClientRestaurants.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/ClientRestaurants.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/Delete.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/Delete.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/Detail.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/Detail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/Detail.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/Edit.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/Edit.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/List.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/List.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/List.cshtml.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/NotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/NotFound.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/_Summary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Restaurants/_Summary.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Restaurants/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @namespace OdeToFood2.Pages.Restaurants 2 | -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Shared/Components/RestaurantCount/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Shared/Components/RestaurantCount/Default.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Program.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Properties/launchSettings.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/Startup.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/ViewComponents/RestaurantCountViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/ViewComponents/RestaurantCountViewComponent.cs -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/appsettings.Development.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/appsettings.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/package-lock.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/package.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/css/site.css -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/favicon.ico -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/js/site.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /OdeToFood2/OdeToFood2/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdeToCode/explore-aspnetcore/HEAD/OdeToFood2/OdeToFood2/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # aspnet5samples 2 | ASP.NET 5 and MVC 6 Exploration 3 | --------------------------------------------------------------------------------