Let's begin our implementation:
- First, create an ASP.NET Core project:

- Once the project is created, do a quick test to check whether the dotnet core components are properly set up. Open a console window and navigate to the project folder. The following commands will restore the referenced packages and compile the application:
dotnet restoredotnet build
- Once the application is built, we can use the run command and execute a GET call to the api/values endpoint:

This should result in the output of the values from the ValuesController.Get ...