dotnet publish

.NET 애플리케이션과 그 의존성을 호스팅 시스템에 배포하기 위해 디렉터리에 게시. 더 많은 정보: https://learn.microsoft.com/dotnet/core/tools/dotnet-publish.

dotnet publish --configuration Release {{경로/대상/프로젝트_파일}}

dotnet publish --self-contained true --runtime {{런타임_식별자}} {{경로/대상/프로젝트_파일}}

dotnet publish --runtime {{런타임_식별자}} -p:PublishSingleFile=true {{경로/대상/프로젝트_파일}}

dotnet publish --self-contained true --runtime {{런타임_식별자}} -p:PublishTrimmed=true {{경로/대상/프로젝트_파일}}

dotnet publish --no-restore {{경로/대상/프로젝트_파일}}

dotnet publish --output {{경로/대상/폴더}} {{경로/대상/프로젝트_파일}}