Setting up your development environment
In this book, the focus will be on Windows development, and any screenshots are going to be from Visual Studio (unless stated otherwise). But since .NET 8 is cross-platform, we will go through how to set up your development environment on Windows, macOS, and Linux.
The go-to link for all the platforms can be found at https://visualstudio.microsoft.com/.
We can download Visual Studio or Visual Studio Code from the web page.
Windows
On Windows, we have many different options for developing Blazor applications. Visual Studio 2022 is the most powerful tool we can use.
There are three different editions, which are as follows:
- Community 2022
- Professional 2022
- Enterprise 2022
In short, the Community Edition is free, while the others cost money. The Community Edition does have some limitations, and we can compare the different editions here: https://visualstudio.microsoft.com/vs/compare/.
For this...