Technical requirements
To follow the examples in this chapter, you will need to create an ASP.NET Core MVC application. Open your console, shell, or Bash terminal, and change to your working directory. Use the following command to create a new MVC application:
dotnet new mvc -n IdentityManagementSample -o IdentityManagementSample --auth Individual
Now, open the project in Visual Studio by double-clicking the project file, or in VS Code by typing the following command in the already open console:
cd IdentityManagementSample code .
All of the code samples of this chapter can be found in the GitHub repo for this book: https://github.com/PacktPublishing/Customizing-ASP.NET-Core-6.0-Second-Edition/tree/main/Chapter11.
Important Note
This chapter expects you to have completed the steps in the last chapter. As an alternative, you can reuse the project from the last chapter and might just need to adjust the project names.