Skip to content

Commit

Permalink
(chocolatey#3618) Ensure ILMerge can run
Browse files Browse the repository at this point in the history
Previously in chocolatey#3609 we removed the No7zip build configuration. This
build configuration set itself as a dependee of ILMerge, and a Dependent
of Build and Test. This resulted in the ILMerge task being dependent
upon Build and Test.

This commit sets the ILMerge task to be dependent upon both Build and
Test so that builds that target just the ILMerge can succeed.
  • Loading branch information
corbob committed Jan 31, 2025
1 parent c98e6f0 commit 4495157
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ Task("Create-TarGz-Packages")
}
});

BuildParameters.Tasks.ILMergeTask.IsDependentOn("Build").IsDependentOn("Test");

///////////////////////////////////////////////////////////////////////////////
// RECIPE SCRIPT
///////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 4495157

Please sign in to comment.