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