wjones127 commented on a change in pull request #12044: URL: https://github.com/apache/arrow/pull/12044#discussion_r778448607
########## File path: csharp/examples/FlightAspServerExample/FlightAspServerExample.csproj ########## @@ -0,0 +1,39 @@ +<!--- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> + +<Project Sdk="Microsoft.NET.Sdk.Web"> + + <PropertyGroup> + <TargetFramework>net6.0</TargetFramework> + <Nullable>enable</Nullable> + <ImplicitUsings>enable</ImplicitUsings> + <LangVersion>10</LangVersion> + </PropertyGroup> + + <ItemGroup> + <Protobuf Include="Protos\greet.proto" GrpcServices="Server" /> + </ItemGroup> + + <ItemGroup> + <PackageReference Include="Grpc.AspNetCore" Version="2.40.0" /> + <PackageReference Include="Apache.Arrow.Flight" Version="6.0.1" /> Review comment: Sure, I can change that at the end. I wrote this on an M1 Mac with BigSur, which doesn't support the old version of `Grpc` that `Apache.Arrow.Flight` depends on, hence line 34 above. (They added ARM support in version 2.37 and fixed a bug for BigSur in some version after that.) If I try to build locally with a ProjectReference it fails; I can test on my x86 machine when finished. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org