From e719da4081ea1ececc7b500884c24698e1993792 Mon Sep 17 00:00:00 2001 From: Joel Davies <12704625+daviesj@users.noreply.github.com> Date: Tue, 18 Aug 2026 16:52:25 -0500 Subject: [PATCH] Correct BuildDependsOn in how-to-extend-the-visual-studio-build-process.md BuildDependsOn in the default target files does not include $(BuildDependsOn). Remove that line to make it match code at https://github.com/dotnet/msbuild/blob/6680032d11ab4bf746983a0fe791274beaf2864a/src/Tasks/Microsoft.Common.CurrentVersion.targets#L917 --- docs/msbuild/how-to-extend-the-visual-studio-build-process.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/msbuild/how-to-extend-the-visual-studio-build-process.md b/docs/msbuild/how-to-extend-the-visual-studio-build-process.md index c5f896ab6c8..d465555d95d 100644 --- a/docs/msbuild/how-to-extend-the-visual-studio-build-process.md +++ b/docs/msbuild/how-to-extend-the-visual-studio-build-process.md @@ -81,7 +81,6 @@ This piece of XML indicates that before the `Build` target can run, all the targ ```xml - $(BuildDependsOn); BeforeBuild; CoreBuild; AfterBuild