├── .gitattributes ├── 9781484243428.jpg ├── Contributing.md ├── LICENSE.txt ├── PizzaPlace070 ├── .vs │ ├── PizzaPlace070 │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── config │ │ └── applicationhost.config ├── PizzaPlace070.Client │ ├── App.cshtml │ ├── DebuggingExtensions.cs │ ├── Pages │ │ ├── Counter.cshtml │ │ ├── CustomerEntry.cshtml │ │ ├── FetchData.cshtml │ │ ├── Index.cshtml │ │ ├── PizzaInfo.cshtml │ │ ├── PizzaItem.cshtml │ │ ├── PizzaList.cshtml │ │ ├── ShoppingBasket.cshtml │ │ └── _ViewImports.cshtml │ ├── PizzaPlace070.Client.csproj │ ├── PizzaPlace070.Client.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── MenuService.cs │ │ └── OrderService.cs │ ├── Shared │ │ ├── MainLayout.cshtml │ │ ├── NavMenu.cshtml │ │ └── SurveyPrompt.cshtml │ ├── Startup.cs │ ├── _ViewImports.cshtml │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── Microsoft.AspNetCore.Blazor.Browser.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.JSInterop.dll │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ ├── PizzaPlace070.Client.blazor.config │ │ │ ├── PizzaPlace070.Client.dll │ │ │ ├── PizzaPlace070.Client.pdb │ │ │ ├── PizzaPlace070.Extensions.Validation.blazor.config │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ ├── PizzaPlace070.Extensions.Validation.pdb │ │ │ ├── PizzaPlace070.Shared.dll │ │ │ ├── PizzaPlace070.Shared.pdb │ │ │ └── dist │ │ │ ├── _content │ │ │ └── PizzaPlace070.Extensions.Validation │ │ │ │ ├── background.png │ │ │ │ ├── exampleJsInterop.js │ │ │ │ └── styles.css │ │ │ └── _framework │ │ │ ├── _bin │ │ │ ├── Microsoft.AspNetCore.Blazor.Browser.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.JSInterop.dll │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ ├── PizzaPlace070.Client.dll │ │ │ ├── PizzaPlace070.Client.pdb │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ ├── PizzaPlace070.Extensions.Validation.pdb │ │ │ ├── PizzaPlace070.Shared.dll │ │ │ ├── PizzaPlace070.Shared.pdb │ │ │ ├── System.Core.dll │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.dll │ │ │ └── mscorlib.dll │ │ │ ├── blazor.boot.json │ │ │ ├── blazor.server.js │ │ │ ├── blazor.webassembly.js │ │ │ └── wasm │ │ │ ├── mono.js │ │ │ └── mono.wasm │ ├── obj │ │ ├── Debug │ │ │ └── netstandard2.0 │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── Blazor.components.input.cache │ │ │ │ ├── Blazor.definition.components.json │ │ │ │ ├── Blazor.inputs.txt │ │ │ │ ├── BlazorTemp │ │ │ │ ├── PizzaPlace070.Client.dll │ │ │ │ └── PizzaPlace070.Client.pdb │ │ │ │ ├── Pages │ │ │ │ ├── Counter.g.cs │ │ │ │ ├── Counter.g.i.cs │ │ │ │ ├── CustomerEntry.g.cs │ │ │ │ ├── CustomerEntry.g.i.cs │ │ │ │ ├── FetchData.g.cs │ │ │ │ ├── FetchData.g.i.cs │ │ │ │ ├── Index.g.cs │ │ │ │ ├── Index.g.i.cs │ │ │ │ ├── PizzaInfo.g.cs │ │ │ │ ├── PizzaInfo.g.i.cs │ │ │ │ ├── PizzaItem.g.cs │ │ │ │ ├── PizzaItem.g.i.cs │ │ │ │ ├── PizzaList.g.cs │ │ │ │ ├── PizzaList.g.i.cs │ │ │ │ ├── ShoppingBasket.g.cs │ │ │ │ ├── ShoppingBasket.g.i.cs │ │ │ │ ├── _ViewImports.g.cs │ │ │ │ └── _ViewImports.g.i.cs │ │ │ │ ├── PizzaPlace070.Client.AssemblyInfo.cs │ │ │ │ ├── PizzaPlace070.Client.AssemblyInfoInputs.cache │ │ │ │ ├── PizzaPlace070.Client.assets.cache │ │ │ │ ├── PizzaPlace070.Client.csproj.CopyComplete │ │ │ │ ├── PizzaPlace070.Client.csproj.CoreCompileInputs.cache │ │ │ │ ├── PizzaPlace070.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── PizzaPlace070.Client.csprojAssemblyReference.cache │ │ │ │ ├── PizzaPlace070.Client.dll │ │ │ │ ├── PizzaPlace070.Client.pdb │ │ │ │ ├── Shared │ │ │ │ ├── MainLayout.g.cs │ │ │ │ ├── MainLayout.g.i.cs │ │ │ │ ├── NavMenu.g.cs │ │ │ │ ├── NavMenu.g.i.cs │ │ │ │ ├── SurveyPrompt.g.cs │ │ │ │ └── SurveyPrompt.g.i.cs │ │ │ │ ├── _ViewImports.g.cs │ │ │ │ ├── _ViewImports.g.i.cs │ │ │ │ └── blazor │ │ │ │ ├── _content │ │ │ │ └── PizzaPlace070.Extensions.Validation │ │ │ │ │ ├── background.png │ │ │ │ │ ├── exampleJsInterop.js │ │ │ │ │ └── styles.css │ │ │ │ ├── blazor.boot.json │ │ │ │ ├── bootjson-references.txt │ │ │ │ ├── embedded.resources.txt │ │ │ │ ├── inputs.basic.cache │ │ │ │ ├── inputs.bootjson.cache │ │ │ │ ├── inputs.copylocal.txt │ │ │ │ ├── inputs.linker.cache │ │ │ │ ├── inputs.linkerswitch.cache │ │ │ │ ├── linked.assemblies.txt │ │ │ │ ├── linker.descriptor.xml │ │ │ │ └── linker │ │ │ │ ├── Microsoft.AspNetCore.Blazor.Browser.dll │ │ │ │ ├── Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll │ │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.JSInterop.dll │ │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ │ ├── PizzaPlace070.Client.dll │ │ │ │ ├── PizzaPlace070.Client.pdb │ │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ │ ├── PizzaPlace070.Extensions.Validation.pdb │ │ │ │ ├── PizzaPlace070.Shared.dll │ │ │ │ ├── PizzaPlace070.Shared.pdb │ │ │ │ ├── System.Core.dll │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.dll │ │ │ │ └── mscorlib.dll │ │ ├── PizzaPlace070.Client.csproj.nuget.cache │ │ ├── PizzaPlace070.Client.csproj.nuget.g.props │ │ ├── PizzaPlace070.Client.csproj.nuget.g.targets │ │ └── project.assets.json │ └── wwwroot │ │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ ├── images │ │ ├── hot.png │ │ ├── none.png │ │ └── spicy.png │ │ └── index.html ├── PizzaPlace070.Extensions.Validation │ ├── Component1.cshtml │ ├── ExampleJsInterop.cs │ ├── PizzaPlace070.Extensions.Validation.csproj │ ├── PizzaPlace070.Extensions.Validation.csproj.user │ ├── Properties │ │ └── launchSettings.json │ ├── ValidationError.cshtml │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── Microsoft.AspNetCore.Blazor.Browser.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll │ │ │ ├── Microsoft.AspNetCore.Blazor.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.JSInterop.dll │ │ │ ├── Mono.WebAssembly.Interop.dll │ │ │ ├── PizzaPlace070.Extensions.Validation.blazor.config │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ └── PizzaPlace070.Extensions.Validation.pdb │ ├── content │ │ ├── background.png │ │ ├── exampleJsInterop.js │ │ └── styles.css │ └── obj │ │ ├── Debug │ │ └── netstandard2.0 │ │ │ ├── Blazor.components.input.cache │ │ │ ├── Blazor.definition.components.json │ │ │ ├── Blazor.inputs.txt │ │ │ ├── BlazorTemp │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ └── PizzaPlace070.Extensions.Validation.pdb │ │ │ ├── Component1.g.cs │ │ │ ├── Component1.g.i.cs │ │ │ ├── PizzaPlace070.Extensions.Validation.AssemblyInfo.cs │ │ │ ├── PizzaPlace070.Extensions.Validation.AssemblyInfoInputs.cache │ │ │ ├── PizzaPlace070.Extensions.Validation.assets.cache │ │ │ ├── PizzaPlace070.Extensions.Validation.csproj.CopyComplete │ │ │ ├── PizzaPlace070.Extensions.Validation.csproj.CoreCompileInputs.cache │ │ │ ├── PizzaPlace070.Extensions.Validation.csproj.FileListAbsolute.txt │ │ │ ├── PizzaPlace070.Extensions.Validation.csprojAssemblyReference.cache │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ ├── PizzaPlace070.Extensions.Validation.pdb │ │ │ ├── ValidationError.g.cs │ │ │ └── ValidationError.g.i.cs │ │ ├── PizzaPlace070.Extensions.Validation.csproj.nuget.cache │ │ ├── PizzaPlace070.Extensions.Validation.csproj.nuget.g.props │ │ ├── PizzaPlace070.Extensions.Validation.csproj.nuget.g.targets │ │ └── project.assets.json ├── PizzaPlace070.Server │ ├── Controllers │ │ ├── OrdersController.cs │ │ ├── PizzasController.cs │ │ └── SampleDataController.cs │ ├── Migrations │ │ ├── 20190106091124_CreatingPizzaDb.Designer.cs │ │ ├── 20190106091124_CreatingPizzaDb.cs │ │ ├── 20190106093352_HandlingOrders.Designer.cs │ │ ├── 20190106093352_HandlingOrders.cs │ │ └── PizzaPlaceDbContextModelSnapshot.cs │ ├── PizzaPlace070.Server.csproj │ ├── PizzaPlace070.Server.csproj.user │ ├── PizzaPlaceDbContext.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp2.1 │ │ │ ├── PizzaPlace070.Client.blazor.config │ │ │ ├── PizzaPlace070.Client.dll │ │ │ ├── PizzaPlace070.Client.pdb │ │ │ ├── PizzaPlace070.Extensions.Validation.blazor.config │ │ │ ├── PizzaPlace070.Extensions.Validation.dll │ │ │ ├── PizzaPlace070.Extensions.Validation.pdb │ │ │ ├── PizzaPlace070.Server.deps.json │ │ │ ├── PizzaPlace070.Server.dll │ │ │ ├── PizzaPlace070.Server.pdb │ │ │ ├── PizzaPlace070.Server.runtimeconfig.dev.json │ │ │ ├── PizzaPlace070.Server.runtimeconfig.json │ │ │ ├── PizzaPlace070.Shared.dll │ │ │ └── PizzaPlace070.Shared.pdb │ └── obj │ │ ├── Debug │ │ └── netcoreapp2.1 │ │ │ ├── PizzaPlace070.Server.AssemblyInfo.cs │ │ │ ├── PizzaPlace070.Server.AssemblyInfoInputs.cache │ │ │ ├── PizzaPlace070.Server.RazorAssemblyInfo.cache │ │ │ ├── PizzaPlace070.Server.RazorAssemblyInfo.cs │ │ │ ├── PizzaPlace070.Server.RazorTargetAssemblyInfo.cache │ │ │ ├── PizzaPlace070.Server.assets.cache │ │ │ ├── PizzaPlace070.Server.csproj.CopyComplete │ │ │ ├── PizzaPlace070.Server.csproj.CoreCompileInputs.cache │ │ │ ├── PizzaPlace070.Server.csproj.FileListAbsolute.txt │ │ │ ├── PizzaPlace070.Server.csprojAssemblyReference.cache │ │ │ ├── PizzaPlace070.Server.dll │ │ │ ├── PizzaPlace070.Server.exe │ │ │ ├── PizzaPlace070.Server.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── PizzaPlace070.Server.csproj.EntityFrameworkCore.targets │ │ ├── PizzaPlace070.Server.csproj.nuget.cache │ │ ├── PizzaPlace070.Server.csproj.nuget.g.props │ │ ├── PizzaPlace070.Server.csproj.nuget.g.targets │ │ └── project.assets.json ├── PizzaPlace070.Shared │ ├── Basket.cs │ ├── ConsoleOrderService.cs │ ├── Customer.cs │ ├── HardCodedMenuService.cs │ ├── IEnumerableExtensions.cs │ ├── IMenuService.cs │ ├── IOrderService.cs │ ├── Menu.cs │ ├── Order.cs │ ├── Pizza.cs │ ├── PizzaOrder.cs │ ├── PizzaPlace070.Shared.csproj │ ├── State.cs │ ├── UI.cs │ ├── WeatherForecast.cs │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── PizzaPlace070.Shared.deps.json │ │ │ ├── PizzaPlace070.Shared.dll │ │ │ └── PizzaPlace070.Shared.pdb │ └── obj │ │ ├── Debug │ │ └── netstandard2.0 │ │ │ ├── PizzaPlace070.Shared.AssemblyInfo.cs │ │ │ ├── PizzaPlace070.Shared.AssemblyInfoInputs.cache │ │ │ ├── PizzaPlace070.Shared.assets.cache │ │ │ ├── PizzaPlace070.Shared.csproj.CoreCompileInputs.cache │ │ │ ├── PizzaPlace070.Shared.csproj.FileListAbsolute.txt │ │ │ ├── PizzaPlace070.Shared.csprojAssemblyReference.cache │ │ │ ├── PizzaPlace070.Shared.dll │ │ │ └── PizzaPlace070.Shared.pdb │ │ ├── PizzaPlace070.Shared.csproj.nuget.cache │ │ ├── PizzaPlace070.Shared.csproj.nuget.g.props │ │ ├── PizzaPlace070.Shared.csproj.nuget.g.targets │ │ └── project.assets.json └── PizzaPlace070.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484243428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/9781484243428.jpg -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PizzaPlace070/.vs/PizzaPlace070/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/.vs/PizzaPlace070/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /PizzaPlace070/.vs/PizzaPlace070/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/.vs/PizzaPlace070/v15/.suo -------------------------------------------------------------------------------- /PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/.vs/PizzaPlace070/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /PizzaPlace070/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/App.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/App.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/DebuggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/DebuggingExtensions.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/Counter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/Counter.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/CustomerEntry.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/CustomerEntry.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/FetchData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/FetchData.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/Index.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/PizzaInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/PizzaInfo.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/PizzaItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/PizzaItem.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/PizzaList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/PizzaList.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/ShoppingBasket.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/ShoppingBasket.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/PizzaPlace070.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/PizzaPlace070.Client.csproj -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/PizzaPlace070.Client.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/PizzaPlace070.Client.csproj.user -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Program.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Services/MenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Services/MenuService.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Services/OrderService.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Shared/MainLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Shared/MainLayout.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Shared/NavMenu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Shared/NavMenu.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Shared/SurveyPrompt.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Shared/SurveyPrompt.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/Startup.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/_ViewImports.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.Browser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.Browser.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Client.blazor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Client.blazor.config -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Client.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Client.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.blazor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.blazor.config -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Shared.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/PizzaPlace070.Shared.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_content/PizzaPlace070.Extensions.Validation/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_content/PizzaPlace070.Extensions.Validation/background.png -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_content/PizzaPlace070.Extensions.Validation/exampleJsInterop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_content/PizzaPlace070.Extensions.Validation/exampleJsInterop.js -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_content/PizzaPlace070.Extensions.Validation/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_content/PizzaPlace070.Extensions.Validation/styles.css -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.Browser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.Browser.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Client.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Client.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Shared.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/PizzaPlace070.Shared.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/System.Core.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/System.Net.Http.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/System.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/_bin/mscorlib.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/blazor.boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/blazor.boot.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/blazor.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/blazor.server.js -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/blazor.webassembly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/blazor.webassembly.js -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/wasm/mono.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/wasm/mono.js -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/wasm/mono.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/bin/Debug/netstandard2.0/dist/_framework/wasm/mono.wasm -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/App.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/App.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Blazor.components.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Blazor.definition.components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Blazor.definition.components.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Blazor.inputs.txt: -------------------------------------------------------------------------------- 1 | 1fe7820ef18c2ccc7dd92364e900d5562faf7cd8 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Client.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Client.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Counter.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Counter.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Counter.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Counter.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/CustomerEntry.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/CustomerEntry.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/CustomerEntry.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/CustomerEntry.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/FetchData.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/FetchData.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/FetchData.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/FetchData.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Index.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Index.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Index.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/Index.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaInfo.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaInfo.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaInfo.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaItem.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaItem.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaItem.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaItem.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaList.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaList.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaList.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/PizzaList.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/ShoppingBasket.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/ShoppingBasket.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/ShoppingBasket.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/ShoppingBasket.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/_ViewImports.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/_ViewImports.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/_ViewImports.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Pages/_ViewImports.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.AssemblyInfo.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 025ebeffd68aea6b0aaa6418fe6dd6449e712682 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.assets.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c13f4a4d2eb7a4723de1dd9405757946341c0af8 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/PizzaPlace070.Client.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/MainLayout.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/MainLayout.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/MainLayout.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/MainLayout.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/NavMenu.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/NavMenu.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/NavMenu.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/NavMenu.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/SurveyPrompt.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/SurveyPrompt.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/SurveyPrompt.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/Shared/SurveyPrompt.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/_ViewImports.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/_ViewImports.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/_ViewImports.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/_ViewImports.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/_content/PizzaPlace070.Extensions.Validation/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/_content/PizzaPlace070.Extensions.Validation/background.png -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/_content/PizzaPlace070.Extensions.Validation/exampleJsInterop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/_content/PizzaPlace070.Extensions.Validation/exampleJsInterop.js -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/_content/PizzaPlace070.Extensions.Validation/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/_content/PizzaPlace070.Extensions.Validation/styles.css -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/blazor.boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/blazor.boot.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/bootjson-references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/bootjson-references.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/embedded.resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/embedded.resources.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.basic.cache: -------------------------------------------------------------------------------- 1 | 587d21d68be13211904c62faeb961d2ba0b1d572 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.bootjson.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.bootjson.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.copylocal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.copylocal.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.linker.cache: -------------------------------------------------------------------------------- 1 | 51458d410e5e917c3d3687cdf99ae210063ce667 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/inputs.linkerswitch.cache: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linked.assemblies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linked.assemblies.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker.descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker.descriptor.xml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.AspNetCore.Blazor.Browser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.AspNetCore.Blazor.Browser.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Client.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Client.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Shared.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/PizzaPlace070.Shared.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/System.Core.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/System.Net.Http.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/System.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/Debug/netstandard2.0/blazor/linker/mscorlib.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/PizzaPlace070.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/PizzaPlace070.Client.csproj.nuget.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/PizzaPlace070.Client.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/PizzaPlace070.Client.csproj.nuget.g.props -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/PizzaPlace070.Client.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/PizzaPlace070.Client.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/obj/project.assets.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/images/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/images/hot.png -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/images/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/images/none.png -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/images/spicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/images/spicy.png -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Client/wwwroot/index.html -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/Component1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/Component1.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/ExampleJsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/ExampleJsInterop.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/PizzaPlace070.Extensions.Validation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/PizzaPlace070.Extensions.Validation.csproj -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/PizzaPlace070.Extensions.Validation.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/PizzaPlace070.Extensions.Validation.csproj.user -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/Properties/launchSettings.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/ValidationError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/ValidationError.cshtml -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.Browser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.Browser.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.TagHelperWorkaround.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.AspNetCore.Blazor.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Mono.WebAssembly.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/Mono.WebAssembly.Interop.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.blazor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.blazor.config -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/bin/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/content/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/content/background.png -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/content/exampleJsInterop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/content/exampleJsInterop.js -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/content/styles.css -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Blazor.components.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Blazor.definition.components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Blazor.definition.components.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Blazor.inputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Blazor.inputs.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/BlazorTemp/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Component1.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Component1.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Component1.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/Component1.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.AssemblyInfo.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ffcaecacb8e36a7dc8ebcf06046c230b10847bfb 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.assets.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fe5df9cfe14f81b894784e180e4cf798a371f41c 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/ValidationError.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/ValidationError.g.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/ValidationError.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/Debug/netstandard2.0/ValidationError.g.i.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/PizzaPlace070.Extensions.Validation.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/PizzaPlace070.Extensions.Validation.csproj.nuget.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/PizzaPlace070.Extensions.Validation.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/PizzaPlace070.Extensions.Validation.csproj.nuget.g.props -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/PizzaPlace070.Extensions.Validation.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/PizzaPlace070.Extensions.Validation.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Extensions.Validation/obj/project.assets.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Controllers/PizzasController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Controllers/PizzasController.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Controllers/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Controllers/SampleDataController.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Migrations/20190106091124_CreatingPizzaDb.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Migrations/20190106091124_CreatingPizzaDb.Designer.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Migrations/20190106091124_CreatingPizzaDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Migrations/20190106091124_CreatingPizzaDb.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Migrations/20190106093352_HandlingOrders.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Migrations/20190106093352_HandlingOrders.Designer.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Migrations/20190106093352_HandlingOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Migrations/20190106093352_HandlingOrders.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Migrations/PizzaPlaceDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Migrations/PizzaPlaceDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/PizzaPlace070.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/PizzaPlace070.Server.csproj -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/PizzaPlace070.Server.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/PizzaPlace070.Server.csproj.user -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/PizzaPlaceDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/PizzaPlaceDbContext.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Program.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/Startup.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/appsettings.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Client.blazor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Client.blazor.config -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Client.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Client.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Extensions.Validation.blazor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Extensions.Validation.blazor.config -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Extensions.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Extensions.Validation.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Extensions.Validation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Extensions.Validation.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.deps.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.runtimeconfig.dev.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Server.runtimeconfig.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Shared.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/bin/Debug/netcoreapp2.1/PizzaPlace070.Shared.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.AssemblyInfo.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 24c3081e7c8989d0481adb8929afb4cb31b772be 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 0156d53d572dd6b5aa17cb37e349065e9547562f 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | aa848d3d71acdba0ae8d68e6ac4087e7322ce79d 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.assets.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 09573deaaf16a01d6b203bcd57fa01bee99e6b00 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.exe -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/PizzaPlace070.Server.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.nuget.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.nuget.g.props -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/PizzaPlace070.Server.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Server/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Server/obj/project.assets.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/Basket.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/ConsoleOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/ConsoleOrderService.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/Customer.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/HardCodedMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/HardCodedMenuService.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/IMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/IMenuService.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/IOrderService.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/Menu.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/Order.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/Pizza.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/PizzaOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/PizzaOrder.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/PizzaPlace070.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/PizzaPlace070.Shared.csproj -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/State.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/UI.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/WeatherForecast.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/bin/Debug/netstandard2.0/PizzaPlace070.Shared.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/bin/Debug/netstandard2.0/PizzaPlace070.Shared.deps.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/bin/Debug/netstandard2.0/PizzaPlace070.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/bin/Debug/netstandard2.0/PizzaPlace070.Shared.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/bin/Debug/netstandard2.0/PizzaPlace070.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/bin/Debug/netstandard2.0/PizzaPlace070.Shared.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.AssemblyInfo.cs -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 57964cec882658c83fc0406a1ce354d13db2ac9a 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.assets.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | abc4c183f4449e3fd812dd031afdbcf5ceaea2be 2 | -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.dll -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/Debug/netstandard2.0/PizzaPlace070.Shared.pdb -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/PizzaPlace070.Shared.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/PizzaPlace070.Shared.csproj.nuget.cache -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/PizzaPlace070.Shared.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/PizzaPlace070.Shared.csproj.nuget.g.props -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/PizzaPlace070.Shared.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/PizzaPlace070.Shared.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.Shared/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.Shared/obj/project.assets.json -------------------------------------------------------------------------------- /PizzaPlace070/PizzaPlace070.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/PizzaPlace070/PizzaPlace070.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/blazor-revealed/HEAD/README.md --------------------------------------------------------------------------------