Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions eng/Subsets.props
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@

<ItemGroup>
<!-- Libraries -->
<SubsetName Include="Depprojs" Category="Libraries" Description="The libraries upfront restore projects." />
<SubsetName Include="Native" Category="Libraries" Description="The native libraries used in the shared framework." />
<SubsetName Include="Ref" Category="Libraries" Description="The managed reference libraries." />
<SubsetName Include="Src" Category="Libraries" Description="The managed implementation libraries." />
Expand Down Expand Up @@ -116,6 +117,7 @@
<SubsetName Include="Bundle" Category="Installer" Description="The shared framework bundle installer projects. Produces .exe installers for Windows." />
<SubsetName Include="Installers" Category="Installer" Description="Generates additional installers. This produces the shared frameworks and their installers." />
<SubsetName Include="Test" Category="Installer" Description="The test projects. Note that building this doesn't execute tests: you must also pass the '-test' argument." />
<SubsetName Include="Publish" Category="Installer" OnDemand="true" Description="Builds the installer publish infrastructure." />
</ItemGroup>

<!-- Default targets, parallelization and configurations. -->
Expand Down Expand Up @@ -277,4 +279,8 @@
<InstallerProject Include="@(TestProjectToBuild)" Pack="false" Test="true" BuildInParallel="false" />
</ItemGroup>

<ItemGroup Condition="$(_subsetCategory.Contains('installer')) and $(_subset.Contains('-publish-'))">
<InstallerProject Include="$(InstallerProjectRoot)publish\prepare-artifacts.proj" />
</ItemGroup>

</Project>
62 changes: 0 additions & 62 deletions eng/pipelines/coreclr/templates/finalize-publish.yml

This file was deleted.

2 changes: 1 addition & 1 deletion eng/pipelines/official/jobs/prepare-signed-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:

- script: >-
build.cmd -ci
-subsetcategory installer -subset publish
-configuration Release
-projects $(Build.SourcesDirectory)\src\installer\publish\prepare-artifacts.proj
/p:PublishRidAgnosticPackagesFromPlatform=${{ parameters.PublishRidAgnosticPackagesFromPlatform }}
/p:OfficialBuildId=$(Build.BuildNumber)
/p:SignType=$(SignType)
Expand Down
2 changes: 1 addition & 1 deletion src/installer/publish/prepare-artifacts.proj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project>
<Project DefaultTargets="Build">
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />

<UsingTask TaskName="GenerateChecksums" AssemblyFile="$(InstallerTasksAssemblyPath)" />
Expand Down