Plattformunabhängige, projektorientierte Programmiersprache von Microsoft. Wie C# ohne UI zeug. 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"