Project

You can create a new console application by using dotnet new command with the console type argument. This command creates a new console output project in the folder where the command in called.

dotnet new console

You can name a new application using the n flag followed by the desired name of the application.

dotnet new console -n MyProject

You can update an existing .NET CLI tool using the tool update command.

dotnet tool update --global <tool name>

You can build your project (without running it), using the build command.

dotnet build