Skip to content

Commit ca0a3e2

Browse files
Update PowerShell 7.2 to SDK 7.2.9 (#916)
* 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
1 parent a5a8132 commit ca0a3e2

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

package/Microsoft.Azure.Functions.PowerShellWorker.nuspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Licensed under the MIT license. See LICENSE file in the project root for full li
2727
</metadata>
2828
<files>
2929
<file src="..\src\bin\$configuration$\$targetFramework$\publish\**\*" target="contentFiles\any\any\workers\powershell\7.2" />
30-
<file src="..\src\bin\$configuration$\$targetFramework$\publish\worker.config.json" target="contentFiles\any\any\workers\powershell" />
3130
<file src="..\images\Powershell_black_64.png" target="images\" />
3231
</files>
3332
</package>

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.49.0" />
24-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.8" />
24+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.9" />
2525
<PackageReference Include="CommandLineParser" Version="2.9.1" />
2626
<PackageReference Include="Google.Protobuf" Version="3.21.9" />
2727
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" />

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.18.2" />
1111
<PackageReference Include="xunit" Version="2.4.2" />
1212
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
13-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.8" />
13+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.9" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

tools/helper.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ $DotnetSDKVersionRequirements = @{
1717
}
1818

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

0 commit comments

Comments
 (0)