Grpc.Reflection.Tests.csproj 795 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net45;netcoreapp2.1</TargetFrameworks>
  4. <OutputType>Exe</OutputType>
  5. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="../Grpc.Reflection/Grpc.Reflection.csproj" />
  9. <ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="NUnit" Version="3.10.1" />
  13. <PackageReference Include="NUnitLite" Version="3.10.1" />
  14. </ItemGroup>
  15. <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
  16. <Reference Include="System" />
  17. <Reference Include="Microsoft.CSharp" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Compile Include="..\Grpc.Core.Api\Version.cs" />
  21. </ItemGroup>
  22. </Project>