July 2017
Beginner
466 pages
9h 37m
English
The default deployment model that Visual Studio configures for a .NET Core application is the Framework-Dependent Deployment model. Here, when you publish an app, only the portable, executable DLL will get generated, which you need to run in a system where .NET Core is already installed.
To publish an app to create the deployment package, right-click on the project and, from the context menu that pops up on the screen, click Publish..., as shown in the following screenshot:

This will open the publishing wizard dialog on the screen. For a console app, the publishing target is File System. If you are publishing ...
Read now
Unlock full access