1<!-- 2 This overrides the Directory.Build.props in src/csharp/ 3 since we want different settings for the integration tests 4--> 5<Project> 6 7 <PropertyGroup> 8 <LangVersion>8.0</LangVersion> 9 <TargetFramework>netstandard2.0</TargetFramework> 10 <TreatWarningsAsErrors>true</TreatWarningsAsErrors> 11 <SignAssembly>false</SignAssembly> 12 </PropertyGroup> 13 14 <!-- These would normally be imported from the Grpc.Tools NuGet package --> 15 <Import Project="$(GrpcToolsBuildDir)\_grpc\_Grpc.Tools.props"/> 16 <Import Project="$(GrpcToolsBuildDir)\_protobuf\Google.Protobuf.Tools.props"/> 17 18 <!-- Common properties for tests. --> 19 <!-- The <Protobuf_...> properties would normally be set when the files are imported 20 via the NuGet package. 21 --> 22 <PropertyGroup> 23 <Protobuf_Generator>CSharp</Protobuf_Generator> 24 <Protobuf_IntermediatePath>$(BaseIntermediateOutputPath)Debug/netstandard2.0</Protobuf_IntermediatePath> 25 </PropertyGroup> 26 27</Project> 28