| 1234567891011121314151617181920212223242526272829303132 |
- <Project Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <TargetFrameworks>net45;netcoreapp2.1</TargetFrameworks>
- <OutputType>Exe</OutputType>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <Import Project="..\Grpc.Core\SourceLink.csproj.include" />
- <ItemGroup>
- <ProjectReference Include="..\Grpc.Tools\Grpc.Tools.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Moq" Version="4.8.3" />
- <PackageReference Include="NUnit; NUnitLite" Version="3.10.1" />
- <PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
- </ItemGroup>
- <PropertyGroup Condition=" '$(TargetFramework)' != 'net45' ">
- <DefineConstants>$(DefineConstants);NETCORE</DefineConstants>
- </PropertyGroup>
- <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
- <Reference Include="Microsoft.Build.Framework; Microsoft.Build.Utilities.v4.0" />
- </ItemGroup>
- <ItemGroup Condition=" '$(TargetFramework)' != 'net45' ">
- <PackageReference Include="Microsoft.Build.Framework; Microsoft.Build.Utilities.Core" Version="15.6.*" />
- </ItemGroup>
- </Project>
|