dotnet publish 명령어
작성날짜 2024/07/17
Dotnet Publish
dotnet publish 명령어는 코드를 컴파일한 후 배포에 필요한 파일을 생성한다(dll 파일 등).
dotnet publish --configuration Release --output ../publish
위 명령어를 살펴보자.
--configuration은 빌드 구성을 나타내며 -c로 축약해서 쓸 수 있다. --configuration Release는 Release 빌드로 배포하겠다는 의미이다.
--output은 배포 위치를 나타내며 -o로 축약해서 쓸 수 있다. --output ../publish는 ../publish위치에 배포 파일을 생성하겠다는 의미이다. 명시하지 않을 경우 기본 위치는 [project_file_folder]/bin/[configuration]/[framework]/publish/ 이다.
참고: https://learn.microsoft.com/ko-kr/dotnet/core/tools/dotnet-publish