diff --git a/docs/core/tools/dotnet-run.md b/docs/core/tools/dotnet-run.md index 63d1b238003d7..ef744d30a1e1c 100644 --- a/docs/core/tools/dotnet-run.md +++ b/docs/core/tools/dotnet-run.md @@ -16,12 +16,14 @@ ms.date: 09/29/2025 ```dotnetcli dotnet run [] [-a|--arch ] [--artifacts-path ] - [-c|--configuration ] [-e|--environment ] - [--file ] [-f|--framework ] [--force] [--interactive] - [--launch-profile ] [--no-build] [--no-dependencies] - [--no-launch-profile] [--no-restore] [--os ] [--project ] - [-r|--runtime ] [--tl:[auto|on|off]] - [-v|--verbosity ] [[--] [application arguments]] + [-c|--configuration ] [--disable-build-servers] + [-e|--environment ] [--file ] + [-f|--framework ] [--force] [--interactive] + [-lp|--launch-profile ] [--no-build] [--no-cache] + [--no-dependencies] [--no-launch-profile] [--no-restore] [--os ] + [--project ] [-r|--runtime ] + [--sc|--self-contained] [--tl:[auto|on|off]] [-v|--verbosity ] + [[--] [application arguments]] dotnet run -h|--help ``` @@ -111,7 +113,7 @@ To run the application, the `dotnet run` command resolves the dependencies of th - [!INCLUDE [interactive](includes/cli-interactive.md)] -- **`--launch-profile `** +- **`-lp|--launch-profile `** The name of the launch profile (if any) to use when launching the application. Launch profiles are defined in the *launchSettings.json* file and are typically called `Development`, `Staging`, and `Production`. For more information, see [Working with multiple environments](/aspnet/core/fundamentals/environments). @@ -236,4 +238,3 @@ The environment is constructed in the same order as this list, so the `-e|--envi ```dotnetcli dotnet run -f net6.0 -arg1 -- arg2 arg3 ``` - \ No newline at end of file