Skip to content

Commit

Permalink
ARROW-15381: [C#] Bump dependencies for C# Arrow.Flight and allow net…
Browse files Browse the repository at this point in the history
…standard2.0

Closes apache#12193 from filmor/netstandard-2.0

Authored-by: Benedikt Reinartz <[email protected]>
Signed-off-by: Eric Erhardt <[email protected]>
  • Loading branch information
filmor authored and eerhardt committed Jan 26, 2022
1 parent 0f820ef commit 01855c7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Grpc.AspNetCore.Server" Version="2.33.1" />
<PackageReference Include="Grpc.AspNetCore.Server" Version="2.42.0" />
</ItemGroup>

<ItemGroup>
Expand Down
12 changes: 8 additions & 4 deletions csharp/src/Apache.Arrow.Flight/Apache.Arrow.Flight.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.14.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.33.1" />
<PackageReference Include="Grpc.Tools" Version="2.33.1" PrivateAssets="All" />
<PackageReference Include="Google.Protobuf" Version="3.19.3" />
<PackageReference Include="Grpc.Net.Client" Version="2.42.0" />
<PackageReference Include="Grpc.Tools" Version="2.42.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.33.1" />
<PackageReference Include="Grpc.AspNetCore" Version="2.42.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 01855c7

Please sign in to comment.