From b8807f1c2899e0142c00925c253a5ee0776beaa3 Mon Sep 17 00:00:00 2001 From: dtewers Date: Tue, 17 Feb 2026 18:45:45 -0500 Subject: [PATCH] fix typo in build-process-overview.md "task" is used when it appears "stack' was the intended word --- docs/msbuild/build-process-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/msbuild/build-process-overview.md b/docs/msbuild/build-process-overview.md index 8c045db0f86..e4c1d18cf0c 100644 --- a/docs/msbuild/build-process-overview.md +++ b/docs/msbuild/build-process-overview.md @@ -108,7 +108,7 @@ In a single project, targets execute serially. The central issue is how to deter The target build order is determined by the use of the `BeforeTargets`, `DependsOnTargets`, and `AfterTargets` attributes on each target. The order of later targets can be influenced during execution of an earlier target if the earlier target modifies a property that's referenced in these attributes. -The rules for ordering are described in [Determine the target build order](target-build-order.md#determine-the-target-build-order). The process is determined by a stack structure containing targets to build. The target at the top of this task starts execution, and if it depends on anything else, then those targets are pushed onto the top of the stack, and they start executing. When there's a target without any dependencies, it executes to completion and its parent target resumes. +The rules for ordering are described in [Determine the target build order](target-build-order.md#determine-the-target-build-order). The process is determined by a stack structure containing targets to build. The target at the top of this stack starts execution, and if it depends on anything else, then those targets are pushed onto the top of the stack, and they start executing. When there's a target without any dependencies, it executes to completion and its parent target resumes. ### Project References