Skip to content

Commit 615d0b0

Browse files
ben-wattRon Petrusha
authored andcommitted
Update deploy-with-cli.md (#4817)
Make the final step of running the application in a framework-depandant deployment part of the overall process. (Addresses some of the complaints in the comments section)
1 parent fb11817 commit 615d0b0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/core/deploying/deploy-with-cli.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,17 @@ Deploying a framework-dependent deployment with no third-party dependencies simp
5757
```console
5858
dotnet publish -f netcoreapp1.1 -c Release
5959
```
60-
This creates a Release (rather than a Debug) version of your app. The resulting files are placed in a directory named *publish* that's in a subdirectory of your project's *bin* directory.
60+
This creates a Release (rather than a Debug) version of your app. The resulting files are placed in a directory named *publish* that's in a subdirectory of your project's *bin* directory.
6161

62-
Along with your application's files, the publishing process emits a program database (.pdb) file that contains debugging information about your app. The file is useful primarily for debugging exceptions. You can choose not to distribute it with your application's files. You should, however, save it in the event that you want to debug the Release build of your app.
62+
Along with your application's files, the publishing process emits a program database (.pdb) file that contains debugging information about your app. The file is useful primarily for debugging exceptions. You can choose not to distribute it with your application's files. You should, however, save it in the event that you want to debug the Release build of your app.
6363

64-
You can deploy the complete set of application files in any way you like. For example, you can package them in a Zip file, use a simple `copy` command, or deploy them with any installation package of your choice. Once installed, users can execute your application by using the `dotnet` command and providing the application filename, such as `dotnet fdd.dll`.
64+
You can deploy the complete set of application files in any way you like. For example, you can package them in a Zip file, use a simple `copy` command, or deploy them with any installation package of your choice.
6565

66-
In addition to the application binaries, your installer should also either bundle the shared framework installer or check for it as a prerequisite as part of the application installation. Installation of the shared framework requires Administrator/root access.
66+
1. Run your app
67+
68+
Once installed, users can execute your application by using the `dotnet` command and providing the application filename, such as `dotnet fdd.dll`.
69+
70+
In addition to the application binaries, your installer should also either bundle the shared framework installer or check for it as a prerequisite as part of the application installation. Installation of the shared framework requires Administrator/root access.
6771

6872
## Framework-dependent deployment with third-party dependencies
6973

0 commit comments

Comments
 (0)