Skip to content

Commit 94a9657

Browse files
Update PowerShell 7.2 to SDK 7.2.2 (#781)
* Upgrade Microsoft.PowerShell.SDK to 7.2.2 * Upgrade to .NET SDK 6.0.201 * Upgrade to .NET SDK 3.1.417
1 parent c77e1b7 commit 94a9657

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.Net.Client" Version="2.42.0" />
24-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.1" />
24+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.2" />
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.2.1" />
13+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.2" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

tools/helper.psm1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ $DotnetSDKVersionRequirements = @{
1212

1313
# .NET SDK 3.1 is required by the Microsoft.ManifestTool.dll tool
1414
'3.1' = @{
15-
MinimalPatch = '416'
16-
DefaultPatch = '416'
15+
MinimalPatch = '417'
16+
DefaultPatch = '417'
1717
}
1818

1919
'6.0' = @{
20-
MinimalPatch = '101'
21-
DefaultPatch = '101'
20+
MinimalPatch = '201'
21+
DefaultPatch = '201'
2222
}
2323
}
2424

0 commit comments

Comments
 (0)