• 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.Reflection.Tests</AssemblyName>
9    <OutputType>Exe</OutputType>
10    <PackageId>Grpc.Reflection.Tests</PackageId>
11    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
12  </PropertyGroup>
13
14  <ItemGroup>
15    <ProjectReference Include="../Grpc.Reflection/Grpc.Reflection.csproj" />
16  </ItemGroup>
17
18  <ItemGroup>
19    <PackageReference Include="NUnit" Version="3.10.1" />
20    <PackageReference Include="NUnitLite" Version="3.10.1" />
21  </ItemGroup>
22
23  <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
24    <Reference Include="System" />
25    <Reference Include="Microsoft.CSharp" />
26  </ItemGroup>
27
28  <ItemGroup>
29    <Compile Include="..\Grpc.Core\Version.cs" />
30  </ItemGroup>
31
32</Project>
33