[[:improve]]
Plattformunabhängige, projektorientierte Programmiersprache von Microsoft. Wie [[csharp|C#]] ohne UI zeug. [[powershell|Powershell]] versteht .NET.
.Net App erstellen
dotnet new console -o MyApp --framework net6.0
cd MyApp
dotnet add package System.Management --version 8.0.0
dotnet run [parameters]
dotnet publish -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true
Paketquellen installieren
dotnet nuget add source "https://api.nuget.org/v3/index.json" --name "nuget.org"