Skip to content

Commit

Permalink
Update PowerShell 7.2 to SDK 7.2.9 (#916)
Browse files Browse the repository at this point in the history
* Upgrade to .NET SDK 6.0.405

* Upgrade Microsoft.PowerShell.SDK to 7.2.9

* Remove worker.config.json from the PowerShell 7.2 language worker
  • Loading branch information
Francisco-Gamino authored Feb 1, 2023
1 parent a5a8132 commit ca0a3e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion package/Microsoft.Azure.Functions.PowerShellWorker.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Licensed under the MIT license. See LICENSE file in the project root for full li
</metadata>
<files>
<file src="..\src\bin\$configuration$\$targetFramework$\publish\**\*" target="contentFiles\any\any\workers\powershell\7.2" />
<file src="..\src\bin\$configuration$\$targetFramework$\publish\worker.config.json" target="contentFiles\any\any\workers\powershell" />
<file src="..\images\Powershell_black_64.png" target="images\" />
</files>
</package>
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.49.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.8" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.9" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Google.Protobuf" Version="3.21.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.8" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.9" />
</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 @@ -17,8 +17,8 @@ $DotnetSDKVersionRequirements = @{
}

'6.0' = @{
MinimalPatch = '404'
DefaultPatch = '404'
MinimalPatch = '405'
DefaultPatch = '405'
}
}

Expand Down

0 comments on commit ca0a3e2

Please sign in to comment.