Examining the Demo Project's Structure
Learn the project structure of the Blazor WebAssembly default Demo app.
We'll cover the following...
Now let’s return to Visual Studio to examine the files in the Demo
project.
The following figure shows the project’s structure:
Press + to interact
The project includes quite a few files with some of them divided into their own folders. Let’s examine them.
The wwwroot
folder
The wwwroot
folder is the application’s web root. Only the files in this folder are web-addressable. The wwwroot
folder contains a collection of Cascading Style Sheets (CSS) files, a sample data
file, an icon file, and index.html
.
Later in this course, in addition to these types of files, we will use this folder for public static resources, such as images and ...