From a00b2bc1ca8c811074bb28b5f2210516ffa0d077 Mon Sep 17 00:00:00 2001 From: Epsitha Ananth Date: Thu, 5 Aug 2021 14:34:57 -0700 Subject: [PATCH 1/2] Update doc --- Documentation/CorePackages/Publishing.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Documentation/CorePackages/Publishing.md b/Documentation/CorePackages/Publishing.md index f93df9216d5..fc41c46ee41 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 the build, arcade will pick up SymbolPublishingExclusionsFile.txt and exclude the symbols mentioned in it. From e02adc9ab314e2723625b58ec6b500166fc37a73 Mon Sep 17 00:00:00 2001 From: Epsitha Ananth Date: Thu, 23 Sep 2021 11:03:53 -0700 Subject: [PATCH 2/2] review comment --- Documentation/CorePackages/Publishing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/CorePackages/Publishing.md b/Documentation/CorePackages/Publishing.md index fc41c46ee41..d41c112c225 100644 --- a/Documentation/CorePackages/Publishing.md +++ b/Documentation/CorePackages/Publishing.md @@ -587,4 +587,4 @@ Eg: tools/x64_arm64/mscordaccore.dll tools/x64_arm64/mscordbi.dll -During the build, arcade will pick up SymbolPublishingExclusionsFile.txt and exclude the symbols mentioned in it. +During publishing, arcade will pick up SymbolPublishingExclusionsFile.txt and exclude the symbols mentioned in it.