22 lines
599 B
XML
Executable File
22 lines
599 B
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net45;netcoreapp3.1</TargetFrameworks>
|
|
<OutputType>Exe</OutputType>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Grpc.Core.Api\Version.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|