| 
96 | 96 |     </PropertyGroup>  | 
97 | 97 |   </Target>  | 
98 | 98 | 
 
  | 
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 |  | - | 
133 | 99 | </Project>  | 
0 commit comments