├── .gitignore ├── Api ├── .gitignore ├── Api.csproj ├── ProductData.cs ├── ProductsDelete.cs ├── ProductsPost.cs ├── ProductsPut.cs ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── Startup.cs ├── host.json └── local.settings.example.json ├── CODE_OF_CONDUCT.md ├── Client ├── App.razor ├── Client.csproj ├── Pages │ ├── About.razor │ ├── Index.razor │ ├── ProductDetails.razor │ └── Products.razor ├── Program.cs ├── Properties │ └── launchSettings.json ├── Shared │ ├── ButtonFooter.razor │ ├── CardContent.razor │ ├── HeaderBar.razor │ ├── InputDetail.razor │ ├── ListHeader.razor │ ├── MainLayout.razor │ ├── ModalYesNo.razor │ ├── NavMenu.razor │ └── Products │ │ └── ProductList.razor ├── _Imports.razor └── wwwroot │ ├── appsettings.Development.json │ ├── css │ └── app.css │ ├── favicon.ico │ ├── icon-192.png │ └── index.html ├── Data ├── Data.csproj └── Product.cs ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md └── ShoppingList.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /Api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/.gitignore -------------------------------------------------------------------------------- /Api/Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/Api.csproj -------------------------------------------------------------------------------- /Api/ProductData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/ProductData.cs -------------------------------------------------------------------------------- /Api/ProductsDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/ProductsDelete.cs -------------------------------------------------------------------------------- /Api/ProductsPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/ProductsPost.cs -------------------------------------------------------------------------------- /Api/ProductsPut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/ProductsPut.cs -------------------------------------------------------------------------------- /Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /Api/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Api/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/Startup.cs -------------------------------------------------------------------------------- /Api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/host.json -------------------------------------------------------------------------------- /Api/local.settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Api/local.settings.example.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/App.razor -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Pages/About.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Pages/About.razor -------------------------------------------------------------------------------- /Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Pages/Index.razor -------------------------------------------------------------------------------- /Client/Pages/ProductDetails.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Pages/ProductDetails.razor -------------------------------------------------------------------------------- /Client/Pages/Products.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Pages/Products.razor -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /Client/Shared/ButtonFooter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/ButtonFooter.razor -------------------------------------------------------------------------------- /Client/Shared/CardContent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/CardContent.razor -------------------------------------------------------------------------------- /Client/Shared/HeaderBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/HeaderBar.razor -------------------------------------------------------------------------------- /Client/Shared/InputDetail.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/InputDetail.razor -------------------------------------------------------------------------------- /Client/Shared/ListHeader.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/ListHeader.razor -------------------------------------------------------------------------------- /Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Client/Shared/ModalYesNo.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/ModalYesNo.razor -------------------------------------------------------------------------------- /Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Client/Shared/Products/ProductList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/Shared/Products/ProductList.razor -------------------------------------------------------------------------------- /Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/_Imports.razor -------------------------------------------------------------------------------- /Client/wwwroot/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "API_Prefix": "http://localhost:7071" 3 | } -------------------------------------------------------------------------------- /Client/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/wwwroot/css/app.css -------------------------------------------------------------------------------- /Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Client/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/wwwroot/icon-192.png -------------------------------------------------------------------------------- /Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Client/wwwroot/index.html -------------------------------------------------------------------------------- /Data/Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Data/Data.csproj -------------------------------------------------------------------------------- /Data/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/Data/Product.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ShoppingList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-staticwebapp-dotnet/HEAD/ShoppingList.sln --------------------------------------------------------------------------------