• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.Microbenchmarks</AssemblyName>
9    <OutputType>Exe</OutputType>
10    <PackageId>Grpc.Microbenchmarks</PackageId>
11    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
12  </PropertyGroup>
13
14  <ItemGroup>
15    <ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" />
16  </ItemGroup>
17
18  <ItemGroup>
19    <PackageReference Include="CommandLineParser" Version="2.1.1-beta" />
20  </ItemGroup>
21
22  <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
23    <Reference Include="System" />
24    <Reference Include="Microsoft.CSharp" />
25  </ItemGroup>
26
27  <ItemGroup>
28    <Compile Include="..\Grpc.Core\Version.cs" />
29  </ItemGroup>
30
31</Project>
32