Создать новый .NET CORE Project Visual Studio

// Check everything installed correctly
>>> dotnet
// create new app
>>> dotnet new console -o MyApp
// ebter to folder
>>> cd MyApp
// run app
>>> dotnet run
Mohamed Sami khiari