Skip to content

Commit

Permalink
Update PowerShell 7 to SDK 7.0.8 (#739) (#740)
Browse files Browse the repository at this point in the history
* Upgrade Microsoft.PowerShell.SDK to 7.0.8

* Upgrade to .NET SDK 3.1.416
  • Loading branch information
Francisco-Gamino authored Jan 19, 2022
1 parent c7fdc74 commit ce3e9c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.Core" Version="2.27.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.7" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.8" />
<PackageReference Include="CommandLineParser" Version="2.3.0" />
<PackageReference Include="Google.Protobuf" Version="3.11.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.0.7" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.8" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions tools/helper.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ $RepoRoot = (Resolve-Path "$PSScriptRoot/..").Path
$DotnetSDKVersionRequirements = @{
# We need .NET SDK 3.1 for running the tests, as we still build against the 3.1 framework
'3.1' = @{
MinimalPatch = '415'
DefaultPatch = '415'
MinimalPatch = '416'
DefaultPatch = '416'
}
# We need .NET SDK 5.0 for the updated C# compiler
'5.0' = @{
Expand Down

0 comments on commit ce3e9c0

Please sign in to comment.