Opublikuj aplikację .NET i jej zależności w celu wdrożenia na docelowym systemie. Więcej informacji: https://learn.microsoft.com/dotnet/core/tools/dotnet-publish.
dotnet publish --configuration Release {{ścieżka/do/projektu_lub_solucji}}
dotnet publish --self-contained true --runtime {{identyfikator_runtime}} {{ścieżka/do/projektu_lub_solucji}}
dotnet publish --runtime {{identyfikator_runtime}} -p:PublishSingleFile=true {{ścieżka/do/projektu_lub_solucji}}
dotnet publish --self-contained true --runtime {{identyfikator_runtime}} -p:PublishTrimmed=true {{ścieżka/do/projektu_lub_solucji}}
dotnet publish --no-restore {{ścieżka/do/projektu_lub_solucji}}
dotnet publish --output {{ściezka/do/katalogu}} {{ścieżka/do/projektu_lub_solucji}}