From 4495157d170f16ef256342b4300699d1ab9347f5 Mon Sep 17 00:00:00 2001 From: Cory Knox Date: Fri, 31 Jan 2025 14:43:14 -0800 Subject: [PATCH] (#3618) Ensure ILMerge can run Previously in #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. --- recipe.cake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe.cake b/recipe.cake index af7b5bf4d..a81fdd0c3 100644 --- a/recipe.cake +++ b/recipe.cake @@ -240,6 +240,8 @@ Task("Create-TarGz-Packages") } }); +BuildParameters.Tasks.ILMergeTask.IsDependentOn("Build").IsDependentOn("Test"); + /////////////////////////////////////////////////////////////////////////////// // RECIPE SCRIPT ///////////////////////////////////////////////////////////////////////////////