May 2018
Intermediate to advanced
300 pages
7h 35m
English
The dotnet publish command is used to compile the application, and to check the application's dependencies before copying the application and the dependencies into a folder in preparation for deployment. The execution of the command is the only officially supported way of preparing the .NET Core application for deployment. The synopsis is here:
dotnet publish [<PROJECT>] [-c|--configuration] [-f|--framework] [--force] [--manifest] [--no-dependencies] [--no-restore] [-o|--output] [-r|--runtime] [--self-contained] [-v|--verbosity] [--version-suffix]dotnet publish [-h|--help]
When the command is run, the output will contain the Intermediate Language (IL) code contained in a .dll assembly, a .deps.json file that contains ...