Skip to content

Commit 7242e14

Browse files
authored
Stop using transport packages for CoreCLR assets (#40002)
1 parent 25c222b commit 7242e14

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/coreclr/src/.nuget/Directory.Build.props

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<!-- Packaging projects (.pkgproj) are non-SDK-style, so they need to directly import Directory.Build.props -->
55
<Import Project="../Directory.Build.props" />
6-
6+
77
<Import Project="$(NuGetPackageRoot)\microsoft.dotnet.build.tasks.packaging\$(MicrosoftDotNetBuildTasksPackagingVersion)\build\Microsoft.DotNet.Build.Tasks.Packaging.props" />
88

99
<Import Project="packaging.props" />
@@ -12,8 +12,10 @@
1212
<!-- defined in Packaging.targets, but we need this before targets are imported -->
1313
<PackagePlatform>AnyCPU</PackagePlatform>
1414

15-
<!-- build the transport package which includes product and symbols in addition to standard packages -->
16-
<CreatePackedPackage Condition="'$(CreatePackedPackage)' == ''">true</CreatePackedPackage>
15+
<!-- build the transport package which includes product and symbols in addition to standard packages
16+
This is a legacy setting as we tend to use symbol packages for symbol indexing and we don't use
17+
transport packages to flow dependencies anymore -->
18+
<CreatePackedPackage Condition="'$(CreatePackedPackage)' == ''">false</CreatePackedPackage>
1719

1820
<!-- indicates that lib prefix is not added to library names for Unix-like operating systems -->
1921
<SkipLibraryPrefixFromUnix>true</SkipLibraryPrefixFromUnix>

0 commit comments

Comments
 (0)