2020-09-11 01:33:43 +01:00
|
|
|
# dotnet publish
|
|
|
|
|
2021-01-10 19:35:59 +00:00
|
|
|
> Publish a .NET application and its dependencies to a directory for deployment to a hosting system.
|
2022-10-04 16:06:23 +01:00
|
|
|
> More information: <https://learn.microsoft.com/dotnet/core/tools/dotnet-publish>.
|
2020-09-11 01:33:43 +01:00
|
|
|
|
|
|
|
- Compile a .NET project in release mode:
|
|
|
|
|
|
|
|
`dotnet publish --configuration Release {{path/to/project_file}}`
|
|
|
|
|
|
|
|
- Publish the .NET Core runtime with your application for the specified runtime:
|
|
|
|
|
|
|
|
`dotnet publish --self-contained true --runtime {{runtime_identifier}} {{path/to/project_file}}`
|
|
|
|
|
|
|
|
- Package the application into a platform-specific single-file executable:
|
|
|
|
|
|
|
|
`dotnet publish --runtime {{runtime_identifier}} -p:PublishSingleFile=true {{path/to/project_file}}`
|
|
|
|
|
|
|
|
- Trim unused libraries to reduce the deployment size of an application:
|
|
|
|
|
|
|
|
`dotnet publish --self-contained true --runtime {{runtime_identifier}} -p:PublishTrimmed=true {{path/to/project_file}}`
|
|
|
|
|
|
|
|
- Compile a .NET project without restoring dependencies:
|
|
|
|
|
|
|
|
`dotnet publish --no-restore {{path/to/project_file}}`
|
|
|
|
|
|
|
|
- Specify the output directory:
|
|
|
|
|
|
|
|
`dotnet publish --output {{path/to/directory}} {{path/to/project_file}}`
|