Technical requirements
This chapter includes short code snippets to demonstrate the concepts that are explained. The following software is required:
- Visual Studio 2019: Visual Studio can be downloaded from https://visualstudio.microsoft.com/vs/community/. The Community edition is free and will work for the purposes of this book.
- .NET 5: The .NET framework can be downloaded from https://dotnet.microsoft.com/download.
Make sure you download the SDK and not just the runtime. You can verify the installation by opening Command Prompt and running the dotnet --info
command, as shown in Figure 11.1:
The preceding screenshot shows the version at the time of writing this chapter.
Please visit the following link to check the CiA videos: https://bit.ly/3qDiqYY
Browser
In this chapter, we will be using Chrome to show how a browser's developer tools can help debug your ASP.NET Core web application. Edge...