From 49798a1ebf26d34f65f55b511d285bb63f376275 Mon Sep 17 00:00:00 2001 From: Eric StJohn Date: Fri, 18 Oct 2024 10:22:06 -0700 Subject: [PATCH] Fix the name of the placeholder file (#3348) This doc should not reccomend that users create a `.` file. That's a reserved directory alias for current directory. I'd be surprised if that actually works, it would definitely confuse the build / extraction / etc. I can't even create a file with this name. The correct file name is `_._`. --- docs/reference/nuspec.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/nuspec.md b/docs/reference/nuspec.md index fa9c09c6c..da7370ef6 100644 --- a/docs/reference/nuspec.md +++ b/docs/reference/nuspec.md @@ -825,11 +825,11 @@ C#-specific content for net45 and up /contentFiles/cs/net45/sample.cs ``` -Empty folders can use `.` to opt out of providing content for certain combinations of language and TxM, for example: +Empty folders can use `_._` to opt out of providing content for certain combinations of language and TxM, for example: ``` /contentFiles/vb/any/code.vb -/contentFiles/cs/any/. +/contentFiles/cs/any/_._ ``` #### Example contentFiles section