From 63eb5e2a4bd52842cb4440a9c1b88fd396dd934e Mon Sep 17 00:00:00 2001 From: Francisco Gamino Date: Tue, 8 Nov 2022 10:25:38 -0800 Subject: [PATCH] Update PowerShell 7.2 to SDK 7.2.7 (#889) * Upgrade to .NET SDK 3.1.424 * Upgrade to .NET SDK 6.0.402 * Upgrade Microsoft.PowerShell.SDK to 7.2.7 --- src/Microsoft.Azure.Functions.PowerShellWorker.csproj | 2 +- ...Microsoft.Azure.Functions.PowerShellWorker.Test.csproj | 2 +- tools/helper.psm1 | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Microsoft.Azure.Functions.PowerShellWorker.csproj b/src/Microsoft.Azure.Functions.PowerShellWorker.csproj index f1007c50..bcfb9cf7 100644 --- a/src/Microsoft.Azure.Functions.PowerShellWorker.csproj +++ b/src/Microsoft.Azure.Functions.PowerShellWorker.csproj @@ -21,7 +21,7 @@ Licensed under the MIT license. See LICENSE file in the project root for full li - + diff --git a/test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj b/test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj index e18f8a1b..e97137d8 100644 --- a/test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj +++ b/test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj @@ -10,7 +10,7 @@ - + diff --git a/tools/helper.psm1 b/tools/helper.psm1 index 0272d807..b3dbdf67 100644 --- a/tools/helper.psm1 +++ b/tools/helper.psm1 @@ -12,13 +12,13 @@ $DotnetSDKVersionRequirements = @{ # .NET SDK 3.1 is required by the Microsoft.ManifestTool.dll tool '3.1' = @{ - MinimalPatch = '422' - DefaultPatch = '422' + MinimalPatch = '424' + DefaultPatch = '424' } '6.0' = @{ - MinimalPatch = '400' - DefaultPatch = '400' + MinimalPatch = '402' + DefaultPatch = '402' } }