Our next candidate is a .NET application written in C#. Let's look at how auto-restart works in .NET.
- First, create a new project folder for our sample C# application and navigate to it:
$ mkdir -p ~/fod/ch06/csharp && cd ~/fod/ch06/csharp
- Navigate to the source folder for this chapter:
$ cd ~/fod/ch06
- From within this folder, use the dotnet tool to create a new Web API and have it placed in the dotnet subfolder: ...