Skip to content

Commit 05c319e

Browse files
author
billal mesloub
authored
Merge pull request #46 from zeynepozturkmen/jkotalik/hostingbundleflags
Document hosting bundle flags
2 parents 79753be + 04446e8 commit 05c319e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

aspnetcore/host-and-deploy/aspnet-core-module.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,22 @@ To determine the version of the installed ASP.NET Core Module:
393393

394394
The Hosting Bundle installer logs for the module are found at `C:\Users\%UserName%\AppData\Local\Temp`. The file is named `dd_DotNetCoreWinSvrHosting__{TIMESTAMP}_000_AspNetCoreModule_x64.log`.
395395

396+
## Hosting Bundle installer flags
397+
398+
Usage:
399+
400+
```console
401+
dotnet-hosting-{VERSION}.exe OPT_NO_{OPTION}=1
402+
```
403+
404+
| Option | Values | Description |
405+
|----------------------------|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
406+
| `OPT_NO_ANCM` | 0/1 | Whether the ASP.NET Core Module is installed or not with the Hosting Bundle. Setting OPT_NO_ANCM to 1 causes the ASP.NET Core Module not to be installed. |
407+
| `OPT_NO_SHARED_CONFIG_CHECK` | 0/1 | Whether to check if the ASP.NET Core Module is modifying a shared configuration file (in the `redirection.config`). Setting OPT_NO_SHARED_CONFIG_CHECK to 1 causes the Hosting Bundle to not check if a shared configuration is being used. |
408+
| `OPT_NO_SHAREDFX` | 0/1 | Whether to install the ASP.NET Core Shared Framework. Setting OPT_NO_SHAREDFX will cause the Hosting Bundle not to install the ASP.NET Core Shared Framework. |
409+
| `OPT_NO_RUNTIME` | 0/1 | Whether to install the .NET Core Runtime. Setting OPT_NO_RUNTIME will cause the Hosting Bundle not to install the .NET Core Runtime. |
410+
| `OPT_NO_X86` | 0/1 | Whether to install the x86 .NET Core Runtime and the ASP.NET Core Shared Framework. Setting OPT_NO_X86 will cause the Hosting Bundle not to install the x86 version of the .NET Core Runtime and ASP.NET Core Shared Frameowrk. |
411+
396412
## Module, schema, and configuration file locations
397413

398414
### Module

0 commit comments

Comments
 (0)