Skip to content

Commit 5f6a7a5

Browse files
Update PowerShell 7.0 to SDK 7.0.12 (#853) (#854)
* Upgrade to .NET SDK 3.1.422 * Upgrade Microsoft.PowerShell.SDK to 7.0.12
1 parent 0bba900 commit 5f6a7a5

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.11" />
24+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.12" />
2525
<PackageReference Include="CommandLineParser" Version="2.3.0" />
2626
<PackageReference Include="Google.Protobuf" Version="3.19.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.11" />
13+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.12" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

tools/helper.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ $RepoRoot = (Resolve-Path "$PSScriptRoot/..").Path
1111
$DotnetSDKVersionRequirements = @{
1212
# We need .NET SDK 3.1 for running the tests, as we still build against the 3.1 framework
1313
'3.1' = @{
14-
MinimalPatch = '419'
15-
DefaultPatch = '419'
14+
MinimalPatch = '422'
15+
DefaultPatch = '422'
1616
}
1717
# We need .NET SDK 5.0 for the updated C# compiler
1818
'5.0' = @{

0 commit comments

Comments
 (0)