Installing the .Net SDK
The .NET SDK (Software Development Kit) is required to create, build, and run .NET applications. It includes the runtime, command-line tools, compilers, and templates.
Installation Overview
Section titled “Installation Overview”- Download installer from dotnet.microsoft.com
- Run the installer for your OS (Windows, macOS, Linux)
- Verify installation with
dotnet --info - Understand difference between SDK and Runtime
Related Topics
Section titled “Related Topics”- 1.2.1 Download from dotnet.microsoft.com
- 1.2.2 Verify installation with dotnet info
- 1.2.3 SDK vs Runtime
# Quick install on Ubuntusudo apt-get update && sudo apt-get install -y dotnet-sdk-8.0