From c8ecf2b29d78d8204e033053002acfb38d67b07d Mon Sep 17 00:00:00 2001 From: ZzZombo Date: Wed, 13 Aug 2025 09:58:10 +0800 Subject: [PATCH] Fix spelling in `customize-by-directory.md` --- docs/msbuild/customize-by-directory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/msbuild/customize-by-directory.md b/docs/msbuild/customize-by-directory.md index 75f7f0b49dc..8a55d2f4939 100644 --- a/docs/msbuild/customize-by-directory.md +++ b/docs/msbuild/customize-by-directory.md @@ -126,7 +126,7 @@ A summary of MSBuild's general approach is as follows: - For any given project, MSBuild finds the first *Directory.Build.props* upward in the solution structure, merges it with defaults, and stops scanning for more. - If you want multiple levels to be found and merged, then [``](../msbuild/property-functions.md#msbuild-getpathoffileabove) (shown previously) the "outer" file from the "inner" file. - If the "outer" file doesn't itself also import something above it, then scanning stops there. -- Only do this if the uupper level file actual exists +- Only do this if the outer file actually exists Or more simply: the first *Directory.Build.props* that doesn't import anything is where MSBuild stops.