Skip to content

Commit 110af49

Browse files
authored
Upgrade to PowerShell 7.0.5 (#593)
* Upgrade PowerShell SDK to 7.0.5 * Upgrade to .NET SDK 3.1.406
1 parent 44ec2c3 commit 110af49

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Microsoft.Azure.Functions.PowerShellWorker.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Licensed under the MIT license. See LICENSE file in the project root for full li
2121

2222
<ItemGroup>
2323
<PackageReference Include="Grpc.Core" Version="2.27.0" />
24-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.3" />
24+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.5" />
2525
<PackageReference Include="CommandLineParser" Version="2.3.0" />
2626
<PackageReference Include="Google.Protobuf" Version="3.11.4" />
2727
</ItemGroup>

test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="Moq" Version="4.13.1" />
1111
<PackageReference Include="xunit" Version="2.3.1" />
1212
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
13-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.3" />
13+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.5" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

tools/helper.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ using namespace System.Runtime.InteropServices
77

88
$IsWindowsEnv = [RuntimeInformation]::IsOSPlatform([OSPlatform]::Windows)
99
$RepoRoot = (Resolve-Path "$PSScriptRoot/..").Path
10-
$MinimalSDKVersion = '3.1.201'
11-
$DefaultSDKVersion = '3.1.201'
10+
$MinimalSDKVersion = '3.1.406'
11+
$DefaultSDKVersion = '3.1.406'
1212
$LocalDotnetDirPath = if ($IsWindowsEnv) { "$env:LocalAppData\Microsoft\dotnet" } else { "$env:HOME/.dotnet" }
1313
$GrpcToolsVersion = '2.27.0' # grpc.tools
1414
$GoogleProtobufToolsVersion = '3.11.4' # google.protobuf.tools

0 commit comments

Comments
 (0)