Exploring Radzen Blazor components
First, we will create a Blazor WebAssembly project that we will then explore some of the Radzen Blazor components with:
- Use your preferred code editor to create a new solution/workspace named
Chapter17
. - Add a console app project, as defined in the following list:
- Project template: Blazor WebAssembly App Empty/
blazorwasm-empty
- Workspace/solution file and folder:
Chapter17
- Project file and folder:
Northwind.BlazorLibraries
- Configure for HTTPS: Selected
- ASP.NET Core hosted: Selected or use the
--hosted
switch - Progressive Web App: Selected or use the
--pwa
switch
- Project template: Blazor WebAssembly App Empty/
- Note that three projects have been created named
Northwind.BlazorLibraries.Client
,Northwind.BlazorLibraries.Server
, andNorthwind.BlazorLibraries.Shared
. - Use your preferred coding tool to set the
Server
project to be active:- If you are using Visual Studio 2022, make sure that the...