Skip to content

Commit

Permalink
Update PowerShell 7.2 to SDK 7.2.7 (#889)
Browse files Browse the repository at this point in the history
* Upgrade to .NET SDK 3.1.424

* Upgrade to .NET SDK 6.0.402

* Upgrade Microsoft.PowerShell.SDK to 7.2.7
  • Loading branch information
Francisco-Gamino authored Nov 8, 2022
1 parent c4fe842 commit 63eb5e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Microsoft.Azure.Functions.PowerShellWorker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Licensed under the MIT license. See LICENSE file in the project root for full li

<ItemGroup>
<PackageReference Include="Grpc.Net.Client" Version="2.42.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.6" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.7" />
<PackageReference Include="CommandLineParser" Version="2.3.0" />
<PackageReference Include="Google.Protobuf" Version="3.19.4" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.6" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.7" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions tools/helper.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Expand Down

0 comments on commit 63eb5e2

Please sign in to comment.