Skip to content

Commit 4495157

Browse files
committed
(chocolatey#3618) Ensure ILMerge can run
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.
1 parent c98e6f0 commit 4495157

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

recipe.cake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,8 @@ Task("Create-TarGz-Packages")
240240
}
241241
});
242242

243+
BuildParameters.Tasks.ILMergeTask.IsDependentOn("Build").IsDependentOn("Test");
244+
243245
///////////////////////////////////////////////////////////////////////////////
244246
// RECIPE SCRIPT
245247
///////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)