Skip to content

Commit

Permalink
Fix the name of the placeholder file (#3348)
Browse files Browse the repository at this point in the history
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 `_._`.
  • Loading branch information
ericstj authored Oct 18, 2024
1 parent 2c8810d commit 49798a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/nuspec.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 49798a1

Please sign in to comment.