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 <ServerGarbageCollection>true</ServerGarbageCollection> 9 <TreatWarningsAsErrors>true</TreatWarningsAsErrors> 10 </PropertyGroup> 11 12 <ItemGroup> 13 <ProjectReference Include="../Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj" /> 14 </ItemGroup> 15 16 <ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> 17 <Reference Include="System" /> 18 <Reference Include="Microsoft.CSharp" /> 19 </ItemGroup> 20 21 <ItemGroup> 22 <Compile Include="..\Grpc.Core.Api\Version.cs" /> 23 </ItemGroup> 24 25</Project> 26