Skip to content

Commit

Permalink
Upgrade to PowerShell 7.0.6 (#615)
Browse files Browse the repository at this point in the history
* Upgrade to .NET SDK 3.1.407

* Upgrade Microsoft.PowerShell.SDK to 7.0.6
  • Loading branch information
Francisco-Gamino authored Apr 2, 2021
1 parent 03fe4b4 commit ac95680
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.5" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.6" />
<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.5" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.6" />
</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 @@ -7,8 +7,8 @@ using namespace System.Runtime.InteropServices

$IsWindowsEnv = [RuntimeInformation]::IsOSPlatform([OSPlatform]::Windows)
$RepoRoot = (Resolve-Path "$PSScriptRoot/..").Path
$MinimalSDKVersion = '3.1.406'
$DefaultSDKVersion = '3.1.406'
$MinimalSDKVersion = '3.1.407'
$DefaultSDKVersion = '3.1.407'
$LocalDotnetDirPath = if ($IsWindowsEnv) { "$env:LocalAppData\Microsoft\dotnet" } else { "$env:HOME/.dotnet" }
$GrpcToolsVersion = '2.27.0' # grpc.tools
$GoogleProtobufToolsVersion = '3.11.4' # google.protobuf.tools
Expand Down

0 comments on commit ac95680

Please sign in to comment.