Skip to content

Remove publishing opt-out for nuget assets #47708

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

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ private bool ExcludeAsset(AssetVerticalMatchResult assetVerticalMatch)
// - this can be removed after this issue is resolved: https://github.com/dotnet/source-build/issues/4892
StringComparer.OrdinalIgnoreCase.Equals(assetVerticalMatch.AssetId, "Microsoft.Diagnostics.NETCore.Client") ||
StringComparer.OrdinalIgnoreCase.Equals(assetVerticalMatch.AssetId, "Microsoft.NET.Sdk.Aspire.Manifest-8.0.100") ||
// Skip all Nuget packaged as they are missing UB version suffix +100 patch version
// - this can be removed after this issue is resolved: https://github.com/dotnet/source-build/issues/4894
StringComparer.OrdinalIgnoreCase.Equals(assetVerticalMatch.Asset.RepoOrigin, "nuget-client") ||
// Skip productVersion.txt files from all repos except sdk
// - this can be removed after this issue is resolved: https://github.com/dotnet/source-build/issues/4596
(assetVerticalMatch.AssetId.Contains("/productVersion.txt", StringComparison.OrdinalIgnoreCase) && (assetVerticalMatch.Asset.RepoOrigin != "sdk"));
Expand Down
Loading