├── .gitignore ├── Chapter02 ├── Chapter2.csproj ├── Chapter2.sln ├── Controllers │ ├── HelloWorldController.cs │ ├── HomeController.cs │ └── ProductsController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Views │ ├── HelloWorld │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ ├── Privacy.cshtml │ │ └── ShipmentDetails.cshtml │ ├── Products │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ └── LICENSE │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ └── LICENSE.md │ └── jquery │ └── LICENSE.txt ├── Chapter03 ├── Chapter03.csproj ├── Chapter03.http ├── Chapter03.sln ├── Controllers │ ├── TestController.cs │ ├── UserController.cs │ └── WeatherForecastController.cs ├── Middlewares │ ├── CustomLoggingMiddleware.cs │ └── ErrorHandlingMiddleware.cs ├── Models │ └── User.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── ComplexService.cs │ ├── EmailSender.cs │ ├── FileLoggingService.cs │ ├── IComplexService.cs │ ├── IEmailSender.cs │ ├── ILoggingService.cs │ ├── INotificationService.cs │ ├── IUserService.cs │ ├── NotificationService.cs │ └── UserService.cs ├── WeatherForecast.cs └── appsettings.json ├── Chapter04 ├── Authentication │ ├── Authentication.csproj │ ├── Authentication.sln │ ├── Controllers │ │ ├── HomeController.cs │ │ └── SecureController.cs │ ├── Helpers │ │ └── EncryptionHelper.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ ├── User.cs │ │ └── UserInputModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ └── LICENSE │ │ ├── jquery-validation-unobtrusive │ │ └── LICENSE.txt │ │ ├── jquery-validation │ │ └── LICENSE.md │ │ └── jquery │ │ └── LICENSE.txt └── Configuration │ ├── Chapter4.csproj │ ├── Chapter4.sln │ ├── Program.cs │ ├── TextFileConfigurationProvider.cs │ ├── TextFileConfigurationSource.cs │ ├── appsettings.xml │ ├── config.txt │ └── mysettings.json ├── Chapter05 ├── Chapter05 │ ├── Chapter05.Client │ │ ├── Chapter05.Client.csproj │ │ ├── Pages │ │ │ └── Counter.razor │ │ ├── Program.cs │ │ ├── _Imports.razor │ │ └── wwwroot │ │ │ └── appsettings.json │ └── Chapter05 │ │ ├── Chapter05.csproj │ │ ├── Components │ │ ├── App.razor │ │ ├── ChildComponent.razor │ │ ├── ChildCounter.razor │ │ ├── Layout │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.css │ │ │ ├── NavMenu.razor │ │ │ └── NavMenu.razor.css │ │ ├── ModalDialog.razor │ │ ├── Pages │ │ │ ├── CascadingParent.razor │ │ │ ├── ContactForm.razor │ │ │ ├── ContactList.razor │ │ │ ├── Error.razor │ │ │ ├── Home.razor │ │ │ ├── LifecycleComponent.razor │ │ │ ├── OneWayBinding.razor │ │ │ ├── ParentComponentSimpleButton.razor │ │ │ ├── ParentCounter.razor │ │ │ ├── ParentModalDialog.razor │ │ │ ├── ProductDetails.razor │ │ │ ├── Search.razor │ │ │ ├── TwoWayBinding.razor │ │ │ └── Weather.razor │ │ ├── Routes.razor │ │ ├── SimpleButton.razor │ │ ├── StyledButton.razor │ │ └── _Imports.razor │ │ ├── Contact.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── app.css │ │ └── favicon.png └── Chapter5.sln ├── Chapter06 ├── Chapter6.Client │ ├── Chapter6.Client.csproj │ ├── Pages │ │ └── Counter.razor │ ├── Program.cs │ ├── _Imports.razor │ └── wwwroot │ │ └── appsettings.json ├── Chapter6.sln └── Chapter6 │ ├── Chapter6.csproj │ ├── Components │ ├── App.razor │ ├── ChildComponent.razor │ ├── ChildComponentEvent.razor │ ├── ClickEventComponent.razor │ ├── CounterComponent.razor │ ├── CounterComponentSample.razor │ ├── DebounceComponent.razor │ ├── GrandChildComponent.razor │ ├── Layout │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ └── NavMenu.razor.css │ ├── LifecycleComponent.razor │ ├── LocalStorageComponent.razor │ ├── MultipleEventsComponent.razor │ ├── Pages │ │ ├── Error.razor │ │ ├── Home.razor │ │ └── Weather.razor │ ├── ParentComponent.razor │ ├── ParentComponentEvent.razor │ ├── ParentComponentRenderFragment.razor │ ├── PreventDefaultComponent.razor │ ├── RenderFragmentComponent.razor │ ├── Routes.razor │ ├── SecondParentComponent.razor │ ├── SiblingComponent.razor │ ├── StopPropagrationComponent.razor │ └── _Imports.razor │ ├── CounterService.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SharedStateService.cs │ ├── StateContainer.cs │ ├── appsettings.json │ └── wwwroot │ ├── app.css │ ├── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── favicon.png ├── Chapter07 ├── Chapter7.Client │ ├── Chapter7.Client.csproj │ ├── Pages │ │ ├── Counter.razor │ │ ├── HybridRenderModes.razor │ │ ├── ServerComponent.razor │ │ └── WebAssemblyComponent.razor │ ├── Program.cs │ ├── _Imports.razor │ └── wwwroot │ │ └── appsettings.json ├── Chapter7.sln └── Chapter7 │ ├── Chapter7.csproj │ ├── Components │ ├── App.razor │ ├── Layout │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ └── NavMenu.razor.css │ ├── Pages │ │ ├── AdvancedParameterBinding.razor │ │ ├── CardList.razor │ │ ├── ComponentComposition.razor │ │ ├── DynamiRoutes.razor │ │ ├── DynamicComponents.razor │ │ ├── EditUser.razor │ │ ├── Error.razor │ │ ├── FirstComponent.razor │ │ ├── Home.razor │ │ ├── InteractiveAutoExample.razor │ │ ├── JSInteropDatepicker.razor │ │ ├── JsInteropFirstExample.razor │ │ ├── JsInteropSecondExample.razor │ │ ├── Order.razor │ │ ├── ParametersReturnValues.razor │ │ ├── SecondComponent.razor │ │ ├── ServerComponent.razor │ │ └── Weather.razor │ ├── Routes.razor │ └── _Imports.razor │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── User.cs │ ├── appsettings.json │ └── wwwroot │ ├── app.css │ ├── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── favicon.png ├── Chapter08 ├── Chapter8.csproj ├── Chapter8.http ├── Chapter8.sln ├── Controllers │ ├── ProductsController.cs │ ├── ProductsV1Controller.cs │ ├── ProductsV2Controller.cs │ └── WeatherForecastController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherForecast.cs ├── appsettings.json └── json.json ├── Chapter09 ├── Chapter9.csproj ├── Chapter9.http ├── Chapter9.sln ├── Controllers │ ├── Async │ │ └── ShipmentController.cs │ ├── Caching │ │ └── ShipmentController.cs │ ├── ShipmentController.cs │ ├── ShipmentVersioning.cs │ ├── TenantShipmentController.cs │ └── WeatherForecastController.cs ├── Data │ └── SystemContext.cs ├── Interfaces │ ├── IShipment.cs │ └── IShipmentService.cs ├── Middlewares │ └── CustomRouteHandler.cs ├── Models │ └── Shipment.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherForecast.cs └── appsettings.json ├── Chapter10 ├── Angular │ └── angular-chapter-10 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── package.json │ │ ├── public │ │ └── favicon.ico │ │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ └── my-component │ │ │ │ ├── my-component.component.css │ │ │ │ ├── my-component.component.html │ │ │ │ ├── my-component.component.spec.ts │ │ │ │ └── my-component.component.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json ├── React │ └── react-chapter-10 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ └── MyComponent.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js └── Vue │ └── chapter-10-vue-app │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── HelloWorld.vue │ │ └── MyComponent.vue │ └── main.js │ └── vue.config.js ├── Chapter11 ├── chapter-11-composition-api │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── CompositionApiComponent.vue │ │ │ └── HelloWorld.vue │ │ └── main.js │ └── vue.config.js ├── chapter-11-options-api │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── ComponentStateManagement.vue │ │ │ ├── HelloWorld.vue │ │ │ └── OptionsApiComponent.vue │ │ └── main.js │ └── vue.config.js ├── chapter-11-reactivity │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── HelloWorld.vue │ │ │ └── ShipmentTrackingDashboard.vue │ │ └── main.js │ └── vue.config.js ├── chapter-11-router │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── HelloWorld.vue │ │ ├── main.js │ │ ├── router │ │ │ └── index.js │ │ └── views │ │ │ ├── AboutView.vue │ │ │ ├── HomeView.vue │ │ │ └── ShipmentDetailsView.vue │ └── vue.config.js └── chapter-11-state-management │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── HelloWorld.vue │ │ ├── ParentComponent.vue │ │ ├── ShipmentList.vue │ │ └── ShipmentManagement.vue │ ├── main.js │ └── store │ │ └── index.js │ └── vue.config.js ├── Chapter12 ├── Chapter12.csproj ├── Chapter12.http ├── Chapter12.sln ├── Controllers │ ├── LogisticsController.cs │ └── WeatherForecastController.cs ├── Models │ └── LogisticsItem.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherForecast.cs ├── appsettings.json └── clientapp │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── HelloWorld.vue │ │ ├── LogisticsDetails.vue │ │ ├── LogisticsForm.vue │ │ └── LogisticsList.vue │ ├── main.js │ ├── router │ │ └── index.js │ └── services │ │ └── logisticsService.js │ └── vue.config.js ├── Chapter13 ├── Chapter13.csproj ├── Chapter13.http ├── Chapter13.sln ├── ClientApp │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ ├── components │ │ │ │ ├── goal-form │ │ │ │ │ ├── goal-form.component.html │ │ │ │ │ └── goal-form.component.ts │ │ │ │ ├── goal-list │ │ │ │ │ ├── goal-list.component.html │ │ │ │ │ └── goal-list.component.ts │ │ │ │ ├── test-form │ │ │ │ │ ├── test-form.component.css │ │ │ │ │ ├── test-form.component.html │ │ │ │ │ ├── test-form.component.spec.ts │ │ │ │ │ └── test-form.component.ts │ │ │ │ ├── workout-form │ │ │ │ │ ├── workout-form.component.html │ │ │ │ │ └── workout-form.component.ts │ │ │ │ └── workout-list │ │ │ │ │ ├── workout-list.component.html │ │ │ │ │ └── workout-list.component.ts │ │ │ └── services │ │ │ │ ├── goal.service.ts │ │ │ │ └── workout.service.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── Controllers │ ├── FitnessGoalsController.cs │ ├── WeatherForecastController.cs │ └── WorkoutsController.cs ├── Models │ ├── FitnessGoal.cs │ └── Workout.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── FitnessGoalService.cs │ └── WorkoutService.cs ├── WeatherForecast.cs └── appsettings.json ├── Chapter14 ├── Chapter14.csproj ├── Chapter14.http ├── Chapter14.sln ├── Controllers │ ├── PollsController.cs │ └── WeatherForecastController.cs ├── Hubs │ └── VoteHub.cs ├── Models │ ├── CreatePollRequest.cs │ ├── Option.cs │ ├── Pool.cs │ ├── UpdatePollRequest.cs │ ├── Vote.cs │ └── VoteRequest.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ └── PoolService.cs ├── WeatherForecast.cs ├── appsettings.json ├── clientapp │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── CreatePoll.js │ │ ├── Home.js │ │ ├── PollDetails.js │ │ ├── PollList.js │ │ └── PollResults.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js └── package.json └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter02/Chapter2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Chapter2.csproj -------------------------------------------------------------------------------- /Chapter02/Chapter2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Chapter2.sln -------------------------------------------------------------------------------- /Chapter02/Controllers/HelloWorldController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Controllers/HelloWorldController.cs -------------------------------------------------------------------------------- /Chapter02/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter02/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Chapter02/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Program.cs -------------------------------------------------------------------------------- /Chapter02/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter02/Views/HelloWorld/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/HelloWorld/Index.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Home/ShipmentDetails.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Home/ShipmentDetails.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Products/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Products/Index.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Chapter02/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter02/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter02/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/appsettings.json -------------------------------------------------------------------------------- /Chapter02/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter02/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter02/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter02/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter02/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter02/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Chapter02/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Chapter02/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter02/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter02/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter03/Chapter03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Chapter03.csproj -------------------------------------------------------------------------------- /Chapter03/Chapter03.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Chapter03.http -------------------------------------------------------------------------------- /Chapter03/Chapter03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Chapter03.sln -------------------------------------------------------------------------------- /Chapter03/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Controllers/TestController.cs -------------------------------------------------------------------------------- /Chapter03/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Controllers/UserController.cs -------------------------------------------------------------------------------- /Chapter03/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter03/Middlewares/CustomLoggingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Middlewares/CustomLoggingMiddleware.cs -------------------------------------------------------------------------------- /Chapter03/Middlewares/ErrorHandlingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Middlewares/ErrorHandlingMiddleware.cs -------------------------------------------------------------------------------- /Chapter03/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Models/User.cs -------------------------------------------------------------------------------- /Chapter03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Program.cs -------------------------------------------------------------------------------- /Chapter03/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter03/Services/ComplexService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/ComplexService.cs -------------------------------------------------------------------------------- /Chapter03/Services/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/EmailSender.cs -------------------------------------------------------------------------------- /Chapter03/Services/FileLoggingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/FileLoggingService.cs -------------------------------------------------------------------------------- /Chapter03/Services/IComplexService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/IComplexService.cs -------------------------------------------------------------------------------- /Chapter03/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/IEmailSender.cs -------------------------------------------------------------------------------- /Chapter03/Services/ILoggingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/ILoggingService.cs -------------------------------------------------------------------------------- /Chapter03/Services/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/INotificationService.cs -------------------------------------------------------------------------------- /Chapter03/Services/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/IUserService.cs -------------------------------------------------------------------------------- /Chapter03/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/NotificationService.cs -------------------------------------------------------------------------------- /Chapter03/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/Services/UserService.cs -------------------------------------------------------------------------------- /Chapter03/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter03/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter03/appsettings.json -------------------------------------------------------------------------------- /Chapter04/Authentication/Authentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Authentication.csproj -------------------------------------------------------------------------------- /Chapter04/Authentication/Authentication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Authentication.sln -------------------------------------------------------------------------------- /Chapter04/Authentication/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Controllers/SecureController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Controllers/SecureController.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Helpers/EncryptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Helpers/EncryptionHelper.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Models/User.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Models/UserInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Models/UserInputModel.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Program.cs -------------------------------------------------------------------------------- /Chapter04/Authentication/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter04/Authentication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/appsettings.json -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter04/Authentication/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Authentication/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter04/Configuration/Chapter4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/Chapter4.csproj -------------------------------------------------------------------------------- /Chapter04/Configuration/Chapter4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/Chapter4.sln -------------------------------------------------------------------------------- /Chapter04/Configuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/Program.cs -------------------------------------------------------------------------------- /Chapter04/Configuration/TextFileConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/TextFileConfigurationProvider.cs -------------------------------------------------------------------------------- /Chapter04/Configuration/TextFileConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/TextFileConfigurationSource.cs -------------------------------------------------------------------------------- /Chapter04/Configuration/appsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/appsettings.xml -------------------------------------------------------------------------------- /Chapter04/Configuration/config.txt: -------------------------------------------------------------------------------- 1 | ExampleSetting=Hello, World! 2 | -------------------------------------------------------------------------------- /Chapter04/Configuration/mysettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter04/Configuration/mysettings.json -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.Client/Chapter05.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05.Client/Chapter05.Client.csproj -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.Client/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05.Client/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05.Client/Program.cs -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05.Client/_Imports.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05.Client/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05.Client/wwwroot/appsettings.json -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Chapter05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Chapter05.csproj -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/App.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/ChildComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/ChildComponent.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/ChildCounter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/ChildCounter.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/ModalDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/ModalDialog.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/CascadingParent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/CascadingParent.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/ContactForm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/ContactForm.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/ContactList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/ContactList.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/Error.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/Home.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/LifecycleComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/LifecycleComponent.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/OneWayBinding.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/OneWayBinding.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/ParentComponentSimpleButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/ParentComponentSimpleButton.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/ParentCounter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/ParentCounter.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/ParentModalDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/ParentModalDialog.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/ProductDetails.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/ProductDetails.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/Search.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/Search.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/TwoWayBinding.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/TwoWayBinding.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/Routes.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/SimpleButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/SimpleButton.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/StyledButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/StyledButton.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Components/_Imports.razor -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Contact.cs -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Program.cs -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/appsettings.json -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/wwwroot/app.css -------------------------------------------------------------------------------- /Chapter05/Chapter05/Chapter05/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter05/Chapter05/wwwroot/favicon.png -------------------------------------------------------------------------------- /Chapter05/Chapter5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter05/Chapter5.sln -------------------------------------------------------------------------------- /Chapter06/Chapter6.Client/Chapter6.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6.Client/Chapter6.Client.csproj -------------------------------------------------------------------------------- /Chapter06/Chapter6.Client/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6.Client/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6.Client/Program.cs -------------------------------------------------------------------------------- /Chapter06/Chapter6.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6.Client/_Imports.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6.Client/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6.Client/wwwroot/appsettings.json -------------------------------------------------------------------------------- /Chapter06/Chapter6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6.sln -------------------------------------------------------------------------------- /Chapter06/Chapter6/Chapter6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Chapter6.csproj -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/App.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/ChildComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/ChildComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/ChildComponentEvent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/ChildComponentEvent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/ClickEventComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/ClickEventComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/CounterComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/CounterComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/CounterComponentSample.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/CounterComponentSample.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/DebounceComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/DebounceComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/GrandChildComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/GrandChildComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/LifecycleComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/LifecycleComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/LocalStorageComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/LocalStorageComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/MultipleEventsComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/MultipleEventsComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Pages/Error.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Pages/Home.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/ParentComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/ParentComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/ParentComponentEvent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/ParentComponentEvent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/ParentComponentRenderFragment.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/ParentComponentRenderFragment.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/PreventDefaultComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/PreventDefaultComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/RenderFragmentComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/RenderFragmentComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/Routes.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/SecondParentComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/SecondParentComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/SiblingComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/SiblingComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/StopPropagrationComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/StopPropagrationComponent.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Components/_Imports.razor -------------------------------------------------------------------------------- /Chapter06/Chapter6/CounterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/CounterService.cs -------------------------------------------------------------------------------- /Chapter06/Chapter6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Program.cs -------------------------------------------------------------------------------- /Chapter06/Chapter6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter06/Chapter6/SharedStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/SharedStateService.cs -------------------------------------------------------------------------------- /Chapter06/Chapter6/StateContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/StateContainer.cs -------------------------------------------------------------------------------- /Chapter06/Chapter6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/appsettings.json -------------------------------------------------------------------------------- /Chapter06/Chapter6/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/wwwroot/app.css -------------------------------------------------------------------------------- /Chapter06/Chapter6/wwwroot/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/wwwroot/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter06/Chapter6/wwwroot/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/wwwroot/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter06/Chapter6/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter06/Chapter6/wwwroot/favicon.png -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/Chapter7.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/Chapter7.Client.csproj -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/Pages/Counter.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/Pages/HybridRenderModes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/Pages/HybridRenderModes.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/Pages/ServerComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/Pages/ServerComponent.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/Pages/WebAssemblyComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/Pages/WebAssemblyComponent.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/Program.cs -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/_Imports.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7.Client/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.Client/wwwroot/appsettings.json -------------------------------------------------------------------------------- /Chapter07/Chapter7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7.sln -------------------------------------------------------------------------------- /Chapter07/Chapter7/Chapter7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Chapter7.csproj -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/App.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/AdvancedParameterBinding.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/AdvancedParameterBinding.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/CardList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/CardList.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/ComponentComposition.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/ComponentComposition.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/DynamiRoutes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/DynamiRoutes.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/DynamicComponents.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/DynamicComponents.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/EditUser.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/EditUser.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/Error.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/FirstComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/FirstComponent.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/Home.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/InteractiveAutoExample.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/InteractiveAutoExample.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/JSInteropDatepicker.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/JSInteropDatepicker.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/JsInteropFirstExample.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/JsInteropFirstExample.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/JsInteropSecondExample.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/JsInteropSecondExample.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/Order.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/Order.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/ParametersReturnValues.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/ParametersReturnValues.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/SecondComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/SecondComponent.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/ServerComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/ServerComponent.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/Routes.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Components/_Imports.razor -------------------------------------------------------------------------------- /Chapter07/Chapter7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Program.cs -------------------------------------------------------------------------------- /Chapter07/Chapter7/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter07/Chapter7/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/User.cs -------------------------------------------------------------------------------- /Chapter07/Chapter7/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/appsettings.json -------------------------------------------------------------------------------- /Chapter07/Chapter7/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/wwwroot/app.css -------------------------------------------------------------------------------- /Chapter07/Chapter7/wwwroot/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/wwwroot/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter07/Chapter7/wwwroot/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/wwwroot/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter07/Chapter7/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter07/Chapter7/wwwroot/favicon.png -------------------------------------------------------------------------------- /Chapter08/Chapter8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Chapter8.csproj -------------------------------------------------------------------------------- /Chapter08/Chapter8.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Chapter8.http -------------------------------------------------------------------------------- /Chapter08/Chapter8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Chapter8.sln -------------------------------------------------------------------------------- /Chapter08/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Chapter08/Controllers/ProductsV1Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Controllers/ProductsV1Controller.cs -------------------------------------------------------------------------------- /Chapter08/Controllers/ProductsV2Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Controllers/ProductsV2Controller.cs -------------------------------------------------------------------------------- /Chapter08/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter08/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Program.cs -------------------------------------------------------------------------------- /Chapter08/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter08/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter08/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/appsettings.json -------------------------------------------------------------------------------- /Chapter08/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter08/json.json -------------------------------------------------------------------------------- /Chapter09/Chapter9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Chapter9.csproj -------------------------------------------------------------------------------- /Chapter09/Chapter9.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Chapter9.http -------------------------------------------------------------------------------- /Chapter09/Chapter9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Chapter9.sln -------------------------------------------------------------------------------- /Chapter09/Controllers/Async/ShipmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Controllers/Async/ShipmentController.cs -------------------------------------------------------------------------------- /Chapter09/Controllers/Caching/ShipmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Controllers/Caching/ShipmentController.cs -------------------------------------------------------------------------------- /Chapter09/Controllers/ShipmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Controllers/ShipmentController.cs -------------------------------------------------------------------------------- /Chapter09/Controllers/ShipmentVersioning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Controllers/ShipmentVersioning.cs -------------------------------------------------------------------------------- /Chapter09/Controllers/TenantShipmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Controllers/TenantShipmentController.cs -------------------------------------------------------------------------------- /Chapter09/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter09/Data/SystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Data/SystemContext.cs -------------------------------------------------------------------------------- /Chapter09/Interfaces/IShipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Interfaces/IShipment.cs -------------------------------------------------------------------------------- /Chapter09/Interfaces/IShipmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Interfaces/IShipmentService.cs -------------------------------------------------------------------------------- /Chapter09/Middlewares/CustomRouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Middlewares/CustomRouteHandler.cs -------------------------------------------------------------------------------- /Chapter09/Models/Shipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Models/Shipment.cs -------------------------------------------------------------------------------- /Chapter09/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Program.cs -------------------------------------------------------------------------------- /Chapter09/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter09/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter09/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter09/appsettings.json -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/.editorconfig -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/.gitignore -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/README.md -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/angular.json -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/package.json -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/public/favicon.ico -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/app.config.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/app.routes.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/my-component/my-component.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/my-component/my-component.component.html: -------------------------------------------------------------------------------- 1 |

{{ title }}

2 | -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/my-component/my-component.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/my-component/my-component.component.spec.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/app/my-component/my-component.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/app/my-component/my-component.component.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/index.html -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/main.ts -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/src/styles.css -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/tsconfig.json -------------------------------------------------------------------------------- /Chapter10/Angular/angular-chapter-10/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Angular/angular-chapter-10/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/.gitignore -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/README.md -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/package.json -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/public/favicon.ico -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/public/index.html -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/public/logo192.png -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/public/logo512.png -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/public/manifest.json -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/public/robots.txt -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/App.css -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/App.js -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/App.test.js -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/components/MyComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/components/MyComponent.js -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/index.css -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/index.js -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/logo.svg -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter10/React/react-chapter-10/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/React/react-chapter-10/src/setupTests.js -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/.gitignore -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/README.md -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/babel.config.js -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/jsconfig.json -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/package.json -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/public/favicon.ico -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/public/index.html -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/src/App.vue -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/src/components/MyComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/src/components/MyComponent.vue -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/src/main.js -------------------------------------------------------------------------------- /Chapter10/Vue/chapter-10-vue-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter10/Vue/chapter-10-vue-app/vue.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/.gitignore -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/README.md -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/babel.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/jsconfig.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/package.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/public/favicon.ico -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/public/index.html -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/src/App.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/src/components/CompositionApiComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/src/components/CompositionApiComponent.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/src/main.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-composition-api/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-composition-api/vue.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/.gitignore -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/README.md -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/babel.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/jsconfig.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/package.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/public/favicon.ico -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/public/index.html -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/src/App.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/src/components/ComponentStateManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/src/components/ComponentStateManagement.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/src/components/OptionsApiComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/src/components/OptionsApiComponent.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/src/main.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-options-api/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-options-api/vue.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/.gitignore -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/README.md -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/babel.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/jsconfig.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/package.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/public/favicon.ico -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/public/index.html -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/src/App.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/src/components/ShipmentTrackingDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/src/components/ShipmentTrackingDashboard.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/src/main.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-reactivity/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-reactivity/vue.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/.gitignore -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/README.md -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/babel.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/jsconfig.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/package.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/public/favicon.ico -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/public/index.html -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/App.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/main.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/router/index.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/views/AboutView.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/views/HomeView.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/src/views/ShipmentDetailsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/src/views/ShipmentDetailsView.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-router/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-router/vue.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/.gitignore -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/README.md -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/babel.config.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/jsconfig.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/package.json -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/public/favicon.ico -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/public/index.html -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/App.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/components/ParentComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/components/ParentComponent.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/components/ShipmentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/components/ShipmentList.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/components/ShipmentManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/components/ShipmentManagement.vue -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/main.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/src/store/index.js -------------------------------------------------------------------------------- /Chapter11/chapter-11-state-management/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter11/chapter-11-state-management/vue.config.js -------------------------------------------------------------------------------- /Chapter12/Chapter12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Chapter12.csproj -------------------------------------------------------------------------------- /Chapter12/Chapter12.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Chapter12.http -------------------------------------------------------------------------------- /Chapter12/Chapter12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Chapter12.sln -------------------------------------------------------------------------------- /Chapter12/Controllers/LogisticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Controllers/LogisticsController.cs -------------------------------------------------------------------------------- /Chapter12/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter12/Models/LogisticsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Models/LogisticsItem.cs -------------------------------------------------------------------------------- /Chapter12/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Program.cs -------------------------------------------------------------------------------- /Chapter12/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter12/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter12/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/appsettings.json -------------------------------------------------------------------------------- /Chapter12/clientapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/.gitignore -------------------------------------------------------------------------------- /Chapter12/clientapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/README.md -------------------------------------------------------------------------------- /Chapter12/clientapp/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/babel.config.js -------------------------------------------------------------------------------- /Chapter12/clientapp/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/jsconfig.json -------------------------------------------------------------------------------- /Chapter12/clientapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/package.json -------------------------------------------------------------------------------- /Chapter12/clientapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter12/clientapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/public/index.html -------------------------------------------------------------------------------- /Chapter12/clientapp/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/App.vue -------------------------------------------------------------------------------- /Chapter12/clientapp/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter12/clientapp/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /Chapter12/clientapp/src/components/LogisticsDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/components/LogisticsDetails.vue -------------------------------------------------------------------------------- /Chapter12/clientapp/src/components/LogisticsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/components/LogisticsForm.vue -------------------------------------------------------------------------------- /Chapter12/clientapp/src/components/LogisticsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/components/LogisticsList.vue -------------------------------------------------------------------------------- /Chapter12/clientapp/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/main.js -------------------------------------------------------------------------------- /Chapter12/clientapp/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/router/index.js -------------------------------------------------------------------------------- /Chapter12/clientapp/src/services/logisticsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/src/services/logisticsService.js -------------------------------------------------------------------------------- /Chapter12/clientapp/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter12/clientapp/vue.config.js -------------------------------------------------------------------------------- /Chapter13/Chapter13.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Chapter13.csproj -------------------------------------------------------------------------------- /Chapter13/Chapter13.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Chapter13.http -------------------------------------------------------------------------------- /Chapter13/Chapter13.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Chapter13.sln -------------------------------------------------------------------------------- /Chapter13/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Chapter13/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter13/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter13/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/angular.json -------------------------------------------------------------------------------- /Chapter13/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter13/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/app.config.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/app.routes.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/goal-form/goal-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/goal-form/goal-form.component.html -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/goal-form/goal-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/goal-form/goal-form.component.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/goal-list/goal-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/goal-list/goal-list.component.html -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/goal-list/goal-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/goal-list/goal-list.component.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/test-form/test-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/test-form/test-form.component.html: -------------------------------------------------------------------------------- 1 |

test-form works!

2 | -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/test-form/test-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/test-form/test-form.component.spec.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/test-form/test-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/test-form/test-form.component.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/workout-form/workout-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/workout-form/workout-form.component.html -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/workout-form/workout-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/workout-form/workout-form.component.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/workout-list/workout-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/workout-list/workout-list.component.html -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/components/workout-list/workout-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/components/workout-list/workout-list.component.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/services/goal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/services/goal.service.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/app/services/workout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/app/services/workout.service.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/index.html -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Chapter13/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Chapter13/ClientApp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter13/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Chapter13/ClientApp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/ClientApp/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter13/Controllers/FitnessGoalsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Controllers/FitnessGoalsController.cs -------------------------------------------------------------------------------- /Chapter13/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter13/Controllers/WorkoutsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Controllers/WorkoutsController.cs -------------------------------------------------------------------------------- /Chapter13/Models/FitnessGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Models/FitnessGoal.cs -------------------------------------------------------------------------------- /Chapter13/Models/Workout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Models/Workout.cs -------------------------------------------------------------------------------- /Chapter13/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Program.cs -------------------------------------------------------------------------------- /Chapter13/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter13/Services/FitnessGoalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Services/FitnessGoalService.cs -------------------------------------------------------------------------------- /Chapter13/Services/WorkoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/Services/WorkoutService.cs -------------------------------------------------------------------------------- /Chapter13/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter13/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter13/appsettings.json -------------------------------------------------------------------------------- /Chapter14/Chapter14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Chapter14.csproj -------------------------------------------------------------------------------- /Chapter14/Chapter14.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Chapter14.http -------------------------------------------------------------------------------- /Chapter14/Chapter14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Chapter14.sln -------------------------------------------------------------------------------- /Chapter14/Controllers/PollsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Controllers/PollsController.cs -------------------------------------------------------------------------------- /Chapter14/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter14/Hubs/VoteHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Hubs/VoteHub.cs -------------------------------------------------------------------------------- /Chapter14/Models/CreatePollRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Models/CreatePollRequest.cs -------------------------------------------------------------------------------- /Chapter14/Models/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Models/Option.cs -------------------------------------------------------------------------------- /Chapter14/Models/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Models/Pool.cs -------------------------------------------------------------------------------- /Chapter14/Models/UpdatePollRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Models/UpdatePollRequest.cs -------------------------------------------------------------------------------- /Chapter14/Models/Vote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Models/Vote.cs -------------------------------------------------------------------------------- /Chapter14/Models/VoteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Models/VoteRequest.cs -------------------------------------------------------------------------------- /Chapter14/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Program.cs -------------------------------------------------------------------------------- /Chapter14/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter14/Services/PoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/Services/PoolService.cs -------------------------------------------------------------------------------- /Chapter14/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter14/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/appsettings.json -------------------------------------------------------------------------------- /Chapter14/clientapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/.gitignore -------------------------------------------------------------------------------- /Chapter14/clientapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/README.md -------------------------------------------------------------------------------- /Chapter14/clientapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/package.json -------------------------------------------------------------------------------- /Chapter14/clientapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter14/clientapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/public/index.html -------------------------------------------------------------------------------- /Chapter14/clientapp/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/public/logo192.png -------------------------------------------------------------------------------- /Chapter14/clientapp/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/public/logo512.png -------------------------------------------------------------------------------- /Chapter14/clientapp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/public/manifest.json -------------------------------------------------------------------------------- /Chapter14/clientapp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/public/robots.txt -------------------------------------------------------------------------------- /Chapter14/clientapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/App.css -------------------------------------------------------------------------------- /Chapter14/clientapp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/App.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/App.test.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/components/CreatePoll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/components/CreatePoll.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/components/PollDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/components/PollDetails.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/components/PollList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/components/PollList.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/components/PollResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/components/PollResults.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/index.css -------------------------------------------------------------------------------- /Chapter14/clientapp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/index.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/logo.svg -------------------------------------------------------------------------------- /Chapter14/clientapp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter14/clientapp/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/clientapp/src/setupTests.js -------------------------------------------------------------------------------- /Chapter14/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/Chapter14/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-Full-Stack-Web-Development-with-ASP.NET-Core/HEAD/README.md --------------------------------------------------------------------------------