• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<Project Sdk="Microsoft.NET.Sdk">
2  <PropertyGroup>
3    <TargetFrameworks>net45;netcoreapp2.1</TargetFrameworks>
4    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
5  </PropertyGroup>
6
7  <ItemGroup>
8    <Compile Include="..\Grpc.Core.Api\Version.cs" />
9  </ItemGroup>
10
11  <ItemGroup>
12    <ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" />
13  </ItemGroup>
14
15  <ItemGroup>
16    <PackageReference Include="Google.Protobuf" Version="$(GoogleProtobufVersion)" />
17  </ItemGroup>
18
19  <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
20    <Reference Include="System" />
21    <Reference Include="Microsoft.CSharp" />
22  </ItemGroup>
23
24</Project>
25