Skip to content

Latest commit

 

History

History
78 lines (53 loc) · 1.58 KB

File metadata and controls

78 lines (53 loc) · 1.58 KB

ReadMe_static

Latest LTS SDK Versions

Install .NET SDK on Mac

brew install --cask dotnet-sdk

Validate

$ dotnet --info
.NET SDK:
 Version:           8.0.203
...

Commands

list | List of .NET SDKs

dotnet --list-sdks

Output

8.0.203 [/usr/local/share/dotnet/sdk]

new | Create a basic hello world app

dotnet new console -f net8.0

run | Run the app

dotnet run

Output

Hello, World!

add | Add a NuGet package by using the .NET Core tool

Install the Humanizer library by running the following command:

dotnet add package Humanizer --version 2.7.9

VS Code Extensions

C#

Learning Docs

Browse all courses, learning paths, and modules

learn.microsoft.com » Build .NET applications with C#