diff --git a/docs/consume-packages/Package-References-in-Project-Files.md b/docs/consume-packages/Package-References-in-Project-Files.md index c243db7e7..2bb37b3f6 100644 --- a/docs/consume-packages/Package-References-in-Project-Files.md +++ b/docs/consume-packages/Package-References-in-Project-Files.md @@ -113,10 +113,16 @@ Allowable values for these tags are as follows, with multiple values separated b | analyzers | .NET analyzers | | native | Contents of the `native` folder | | none | None of the above are used. | -| all | All of the above (except `none`) | +| all | All of the above (except `none`). Also turns off "Publish" by default. | + +To set `PrivateAssets` to `all` without affecting publishing behavior, set `PrivateAssets` to `all` and `Publish` to `true` as in the first example below: ```xml + + + +