Skip to content

Commit aae8d7b

Browse files
committed
Upgraded protobuf versions and removed Grpc.Core dependency
1 parent 6153e41 commit aae8d7b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Microsoft.Azure.Functions.PowerShellWorker.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ Licensed under the MIT license. See LICENSE file in the project root for full li
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Grpc.Core" Version="2.27.0" />
23+
<PackageReference Include="Grpc.Net.Client" Version="2.42.0" />
2424
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.1" />
2525
<PackageReference Include="CommandLineParser" Version="2.3.0" />
26-
<PackageReference Include="Google.Protobuf" Version="3.11.4" />
26+
<PackageReference Include="Google.Protobuf" Version="3.19.4" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

tools/helper.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ $DotnetSDKVersionRequirements = @{
2222
}
2323
}
2424

25-
$GrpcToolsVersion = '2.27.0' # grpc.tools
26-
$GoogleProtobufToolsVersion = '3.11.4' # google.protobuf.tools
25+
$GrpcToolsVersion = '2.43.0' # grpc.tools
26+
$GoogleProtobufToolsVersion = '3.19.4' # google.protobuf.tools
2727

2828
function Find-Dotnet
2929
{

tools/protobuf.tools.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Licensed under the MIT license. See LICENSE file in the project root for full li
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Grpc.Tools" Version="2.27.0" />
15-
<PackageReference Include="Google.Protobuf.Tools" Version="3.11.4" />
14+
<PackageReference Include="Grpc.Tools" Version="2.43.0" />
15+
<PackageReference Include="Google.Protobuf.Tools" Version="3.19.4" />
1616
</ItemGroup>
1717

1818
</Project>

0 commit comments

Comments
 (0)