Skip to content

Commit 64561be

Browse files
[release/10.0.1xx-preview3] Do not include symbols nupkgs in PSB archive (#47919)
Co-authored-by: Nikola Milosavljevic <[email protected]>
1 parent 0b6fa96 commit 64561be

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/SourceBuild/content/eng/finish-source-only.proj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,12 @@
227227
<!-- Inputs: Packages to include in the tarball -->
228228
<ItemGroup>
229229
<ArtifactsPackageToBundle Include="$(ArtifactsShippingPackagesDir)**;
230-
$(ArtifactsNonShippingPackagesDir)**"
231-
Condition="!$([System.String]::Copy('%(Identity)').EndsWith('.symbols.nupkg'))" />
232-
<ReferencePackageToBundle Include="$(ReferencePackagesDir)**"
233-
Condition="!$([System.String]::Copy('%(Identity)').EndsWith('.symbols.nupkg'))" />
230+
$(ArtifactsNonShippingPackagesDir)**" />
231+
<ArtifactsPackageToBundle Remove="@(ArtifactsPackageToBundle)"
232+
Condition="$([System.String]::Copy('%(Identity)').EndsWith('.symbols.nupkg'))" />
233+
<ReferencePackageToBundle Include="$(ReferencePackagesDir)**" />
234+
<ReferencePackageToBundle Remove="@(ReferencePackageToBundle)"
235+
Condition="$([System.String]::Copy('%(Identity)').EndsWith('.symbols.nupkg'))" />
234236
<MergedAssetManifest Include="$(MergedAssetManifestOutputPath)" />
235237
</ItemGroup>
236238

0 commit comments

Comments
 (0)