Skip to content

Commit 557b673

Browse files
authored
Update worker to PS 7.4 release SDK (#1025)
Update PowerShell SDK to 7.4.0 Update Dotnet SDK to 8.0.100
1 parent 4f61c25 commit 557b673

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.52.0" />
24-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.0-preview.6" />
24+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.0" />
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.4.0-preview.6" />
13+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.0" />
1414
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0-2.final" />
1515
</ItemGroup>
1616

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
'8.0' = @{
20-
MinimalPatch = '100-rc.2.23502.2'
21-
DefaultPatch = '100-rc.2.23502.2'
20+
MinimalPatch = '100'
21+
DefaultPatch = '100'
2222
}
2323
}
2424

0 commit comments

Comments
 (0)