Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude symbols from publishing to symbol server #7722

Merged
merged 4 commits into from
Sep 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Documentation/CorePackages/Publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this from the root of the repo? or from somewhere else?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

its from the symbols.nupkg.. Not the whole path from root though..

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.
epananth marked this conversation as resolved.
Show resolved Hide resolved