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