- Open the terminal (Applications | Utilities | Terminal).
- Navigate to the root of the solution we built in the previous recipe and enter the following command:
$ dotnet new console -o Chapter3.CsvFile.ConsoleApp
- Again, type this command to see the content of the directory:
$ ls
- Your terminal should look like this:
- Execute the following commands to add this project to the solution and to test build:
$ dotnet sln add Chapter3.CsvFile.Console/Chapter3.CsvFile.ConsoleApp.csproj $ dotnet build
- Let's open Visual Studio Code and open (File | Open) the full solution.
- Your Visual Studio Code should look like this: ...