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