Skip to content

Commit 86949c2

Browse files
ViktorHoferjkotas
andauthored
Update DotNetBuild.props (#115229)
* Update DotNetBuild.props The `CategorizeRuntimeSupplementalArtifacts` target isn't necessary anymore as SB doesn't produce an intermediate package anymore. * Update eng/DotNetBuild.props Co-authored-by: Jan Kotas <[email protected]> --------- Co-authored-by: Jan Kotas <[email protected]>
1 parent e8617b7 commit 86949c2

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

eng/DotNetBuild.props

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -96,38 +96,4 @@
9696
</PropertyGroup>
9797
</Target>
9898

99-
<Target Name="CategorizeRuntimeSupplementalArtifacts"
100-
BeforeTargets="GetCategorizedIntermediateNupkgContents">
101-
<PropertyGroup>
102-
<!-- Symbols archive is too big for main intermediate package, add it to a different one. -->
103-
<SymbolsIntermediateNupkgCategory>runtime</SymbolsIntermediateNupkgCategory>
104-
</PropertyGroup>
105-
106-
<ItemGroup>
107-
<!--
108-
Runtime artifacts are too large to fit into a single package (Azure DevOps feeds 500 mb constraint).
109-
Split large components into separate packages.
110-
-->
111-
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\dotnet-runtime-*$(ArchiveExtension)" Category="runtime" />
112-
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*Microsoft.DotNet.ILCompiler.*.nupkg" Category="ILCompiler" />
113-
114-
<IntermediateNupkgArtifactFile
115-
Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\Microsoft.NETCore.App.Crossgen2.*.nupkg"
116-
Category="Crossgen2Pack" />
117-
118-
<IntermediateNupkgArtifactFile
119-
Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\dotnet-crossgen2-*$(ArchiveExtension)"
120-
Category="Crossgen2Archive" />
121-
</ItemGroup>
122-
123-
<ItemGroup Condition="'$(DotNetBuildOrchestrator)' == 'true'">
124-
<!-- Include installers when in product VMR builds. These are not necessary when building the repo-only build as we don't
125-
need them in downstream source-only PR legs. We could include them, but it may bump us over the package size limit. -->
126-
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.msi" />
127-
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.deb" />
128-
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.rpm" />
129-
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.pkg" />
130-
</ItemGroup>
131-
</Target>
132-
13399
</Project>

0 commit comments

Comments
 (0)