Skip to content

Commit b50278b

Browse files
authored
Remove publishing opt-out for nuget assets (#47708)
1 parent 058245f commit b50278b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/SourceBuild/content/eng/tools/tasks/Microsoft.DotNet.UnifiedBuild.Tasks/ManifestAssets/JoinVerticalsAssetSelector.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ private bool ExcludeAsset(AssetVerticalMatchResult assetVerticalMatch)
3737
// - this can be removed after this issue is resolved: https://github.com/dotnet/source-build/issues/4892
3838
StringComparer.OrdinalIgnoreCase.Equals(assetVerticalMatch.AssetId, "Microsoft.Diagnostics.NETCore.Client") ||
3939
StringComparer.OrdinalIgnoreCase.Equals(assetVerticalMatch.AssetId, "Microsoft.NET.Sdk.Aspire.Manifest-8.0.100") ||
40-
// Skip all Nuget packaged as they are missing UB version suffix +100 patch version
41-
// - this can be removed after this issue is resolved: https://github.com/dotnet/source-build/issues/4894
42-
StringComparer.OrdinalIgnoreCase.Equals(assetVerticalMatch.Asset.RepoOrigin, "nuget-client") ||
4340
// Skip productVersion.txt files from all repos except sdk
4441
// - this can be removed after this issue is resolved: https://github.com/dotnet/source-build/issues/4596
4542
(assetVerticalMatch.AssetId.Contains("/productVersion.txt", StringComparison.OrdinalIgnoreCase) && (assetVerticalMatch.Asset.RepoOrigin != "sdk"));

0 commit comments

Comments
 (0)