Setting up Development Environment
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install
dotnet-core-sdk
and version 3.1.411
brew tap isen-ng/dotnet-sdk-versions
brew install --cask dotnet-sdk3-1-400
dotnet --version
- Optional install
Visual Studio Code
as your editor
brew install --cask visual-studio-code
Create Hello World
Console application
dotnet new console -o hello-world
cd hello-world
dotnet run
Top comments (0)