Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 36bf447

Browse files
authored
Mark all CoreCLR packages as non-shipping (#15725)
This indicates the packages shouldn't be shipped to the NuGet gallery.
1 parent 66b31aa commit 36bf447

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/publish.proj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<PropertyGroup>
1111
<PackagesPatternDir Condition="'$(PackagesPatternDir)' == ''">$(PackagesBinDir)</PackagesPatternDir>
1212
<PackagesPattern Condition="'$(PackagesPattern)' == ''">$(PackagesPatternDir)pkg\*.nupkg</PackagesPattern>
13-
<TransportPackagesPattern Condition="'$(TransportPackagesPattern)' == ''">$(PackagesPatternDir)pkg\transport.*.nupkg</TransportPackagesPattern>
1413
<TestNativeBinariesPattern Condition="'$(TestNativeBinariesPattern)' == ''">$(OutputPath)\bin\**</TestNativeBinariesPattern>
1514
<SymbolsPackagesPattern Condition="'$(SymbolPackagesPattern)' == ''">$(PackagesPatternDir)symbolpkg\*.nupkg</SymbolsPackagesPattern>
1615
<PublishFlatContainer Condition="'$(PublishFlatContainer)' == ''">true</PublishFlatContainer>
@@ -30,10 +29,9 @@
3029
</PropertyGroup>
3130
<ItemGroup>
3231
<ItemsToPush Remove="*.nupkg" />
33-
<ItemsToPush Include="$(TransportPackagesPattern)">
32+
<ItemsToPush Include="$(PackagesPattern)" Exclude="$(SymbolsPackagesPattern)">
3433
<ManifestArtifactData>NonShipping=true</ManifestArtifactData>
3534
</ItemsToPush>
36-
<ItemsToPush Include="$(PackagesPattern)" Exclude="@(ItemsToPush);$(SymbolsPackagesPattern)" />
3735
<ItemsToPush>
3836
<RelativeBlobPath>$(RelativePathWithSlash)$([System.String]::Copy('%(RecursiveDir)%(Filename)%(Extension)').Replace('\' ,'/'))</RelativeBlobPath>
3937
</ItemsToPush>

0 commit comments

Comments
 (0)