July 2017
Beginner
466 pages
9h 37m
English
When you build, debug, and test your application successfully, you need to publish or deploy your app. The .NET Core provides the dotnet publish command to publish your app for deployment.
To publish a .NET Core app in the Release mode, enter the following command:
dotnet publish <ProjectName> -c Release
There are two kinds of deployment available for .NET Core applications, which are Framework-Dependent Deployment (FDD) and Self-Contained Deployment (SCD). The first one depends on a system-wide version of .NET Core to be present before running the application, whereas the second type of deployment does not depend on any .NET Core version already installed on the system as it includes the entire .NET Core ...
Read now
Unlock full access