blob: 1092b2c21ef22e40e6baeb5ed29b98fcef53ecda [file] [log] [blame]
Jan Tattermusch7727c762017-03-31 18:44:27 +02001<Project Sdk="Microsoft.NET.Sdk">
2
3 <Import Project="..\Grpc.Core\Version.csproj.include" />
4 <Import Project="..\Grpc.Core\Common.csproj.include" />
5
Jan Tattermusch503bbac2015-02-26 18:19:47 -08006 <PropertyGroup>
Jan Tattermusch7727c762017-03-31 18:44:27 +02007 <TargetFrameworks>net45;netcoreapp1.0</TargetFrameworks>
Jan Tattermusch503bbac2015-02-26 18:19:47 -08008 <AssemblyName>Grpc.IntegrationTesting.Server</AssemblyName>
Jan Tattermusch7727c762017-03-31 18:44:27 +02009 <OutputType>Exe</OutputType>
10 <PackageId>Grpc.IntegrationTesting.Server</PackageId>
Jan Tattermuschc152d662017-08-09 09:24:20 +020011 <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Jan Tattermusch503bbac2015-02-26 18:19:47 -080012 </PropertyGroup>
Jan Tattermusch7727c762017-03-31 18:44:27 +020013
Jan Tattermusch503bbac2015-02-26 18:19:47 -080014 <ItemGroup>
Jan Tattermusch7727c762017-03-31 18:44:27 +020015 <ProjectReference Include="../Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj" />
16 </ItemGroup>
17
18 <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
Jan Tattermusch503bbac2015-02-26 18:19:47 -080019 <Reference Include="System" />
Jan Tattermusch7727c762017-03-31 18:44:27 +020020 <Reference Include="Microsoft.CSharp" />
Jan Tattermusch503bbac2015-02-26 18:19:47 -080021 </ItemGroup>
Jan Tattermusch7727c762017-03-31 18:44:27 +020022
Jan Tattermusch503bbac2015-02-26 18:19:47 -080023 <ItemGroup>
Jan Tattermusch7727c762017-03-31 18:44:27 +020024 <Compile Include="..\Grpc.Core\Version.cs" />
Jan Tattermusch503bbac2015-02-26 18:19:47 -080025 </ItemGroup>
Jan Tattermusch7727c762017-03-31 18:44:27 +020026
27</Project>