1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <Import Project="..\Grpc.Core\Common.csproj.include" /> 4 5 <PropertyGroup> 6 <TargetFrameworks>net45;netcoreapp2.1</TargetFrameworks> 7 <OutputType>Exe</OutputType> 8 <TreatWarningsAsErrors>true</TreatWarningsAsErrors> 9 </PropertyGroup> 10 11 <ItemGroup> 12 <ProjectReference Include="../Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj" /> 13 </ItemGroup> 14 15 <ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> 16 <Reference Include="System" /> 17 <Reference Include="Microsoft.CSharp" /> 18 </ItemGroup> 19 20 <ItemGroup> 21 <Compile Include="..\Grpc.Core.Api\Version.cs" /> 22 </ItemGroup> 23 24</Project> 25