diff --git a/docs/core/project-sdk/msbuild-props.md b/docs/core/project-sdk/msbuild-props.md index 1a049f6c169a6..2a7b92c5b6201 100644 --- a/docs/core/project-sdk/msbuild-props.md +++ b/docs/core/project-sdk/msbuild-props.md @@ -370,6 +370,7 @@ The following MSBuild properties are documented in this section: - [PublishDocumentationFile](#publishdocumentationfile) - [PublishDocumentationFiles](#publishdocumentationfiles) - [PublishReferencesDocumentationFiles](#publishreferencesdocumentationfiles) +- [PublishReferencesSymbols](#publishreferencessymbols) - [PublishRelease](#publishrelease) - [PublishSelfContained](#publishselfcontained) - [RollForward](#rollforward) @@ -527,6 +528,10 @@ This property is an enablement flag for several other properties that control wh When this property is `true`, XML documentation files for the project's references are copied to the publish directory, instead of just run-time assets like DLL files. This property defaults to `true`. +### PublishReferencesSymbols + +When this property is `true`, symbol files (also known as PDB files) for the project's references are copied to the publish directory. This property defaults to `true`. + ### PublishRelease The `PublishRelease` property informs `dotnet publish` to use the `Release` configuration by default instead of the `Debug` configuration. This property was introduced in .NET 7.