From 947561b140dbe1027c97a530c0e6ae9ae8092cad Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Tue, 8 Oct 2024 14:49:59 -0700 Subject: [PATCH] Revise wording of desc to avoid possible misunderstanding Fixes #42424 --- docs/core/tools/dotnet-run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/tools/dotnet-run.md b/docs/core/tools/dotnet-run.md index 61efb615a8303..c1ef028d52d8b 100644 --- a/docs/core/tools/dotnet-run.md +++ b/docs/core/tools/dotnet-run.md @@ -27,7 +27,7 @@ dotnet run -h|--help ## Description -The `dotnet run` command provides a convenient option to run your application from the source code with one command. It's useful for fast iterative development from the command line. The command depends on the [`dotnet build`](dotnet-build.md) command to build the code. Any requirements for the build, such as that the project must be restored first, apply to `dotnet run` as well. +The `dotnet run` command provides a convenient option to run your application from the source code with one command. It's useful for fast iterative development from the command line. The command depends on the [`dotnet build`](dotnet-build.md) command to build the code. Any requirements for the build apply to `dotnet run` as well. > [!NOTE] > `dotnet run` doesn't respect arguments like `/property:property=value`, which are respected by `dotnet build`.