diff --git a/Documentation/CorePackages/Publishing.md b/Documentation/CorePackages/Publishing.md index f93df9216d5..d41c112c225 100644 --- a/Documentation/CorePackages/Publishing.md +++ b/Documentation/CorePackages/Publishing.md @@ -575,3 +575,16 @@ The aka.ms links are generated using the `BuildQuality` parameter that is passed ### What build qualities are supported? The build qualities that are supported are daily, signed, validated, preview, and ga. All official daily builds that publish using V3 should use the `daily` build quality. Signed and validated builds are generated by the staging process of the release process. Preview and GA links are generated at release time, on release day. All builds that have preview in the release version will be of the `preview` quality. All other builds will be marked as `GA`. GA builds do not append a build quality to the links. + +### Can we exclude symbols from publishing to symbols server? +Yes. + +Create a file eng/SymbolPublishingExclusionsFile.txt in your repo, add the file name that has to be excluded from symbol publishing in SymbolPublishingExclusionsFile.txt. + +Eg: + tools/x86_arm/mscordaccore.dll + tools/x86_arm/mscordbi.dll + tools/x64_arm64/mscordaccore.dll + tools/x64_arm64/mscordbi.dll + +During publishing, arcade will pick up SymbolPublishingExclusionsFile.txt and exclude the symbols mentioned in it.