From 05aa5a88ab043730cebe29b10c5487d20247097f Mon Sep 17 00:00:00 2001 From: TheCakeIsNaOH Date: Fri, 24 Jun 2022 10:41:24 -0500 Subject: [PATCH] (#2738) Do not specify MSBuildToolVersion Now that it is building on a newer .Net version, it is not required to specify the version explicitly, as it can be autodetected. --- recipe.cake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipe.cake b/recipe.cake index 85d1481510..ca1c4eb45b 100644 --- a/recipe.cake +++ b/recipe.cake @@ -171,8 +171,7 @@ BuildParameters.SetParameters(context: Context, getILMergeConfigs: getILMergeConfigs, preferDotNetGlobalToolUsage: !IsRunningOnWindows()); -ToolSettings.SetToolSettings(context: Context, - buildMSBuildToolVersion: MSBuildToolVersion.NET40); +ToolSettings.SetToolSettings(context: Context); BuildParameters.PrintParameters(Context);