40 lines
1.3 KiB
XML
Executable File
40 lines
1.3 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\Grpc.Core\Common.csproj.include" />
|
|
|
|
<PropertyGroup>
|
|
<Authors>The gRPC Authors</Authors>
|
|
<Description>Miscellaneous code for testing Grpc.Core</Description>
|
|
<Copyright>Copyright 2017 The gRPC Authors</Copyright>
|
|
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
|
|
<PackageTags>gRPC test testing</PackageTags>
|
|
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net45;netstandard1.5;netstandard2.0</TargetFrameworks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\Grpc.Core\SourceLink.csproj.include" />
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Grpc.Core.Api\Version.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Grpc.Core/Grpc.Core.csproj">
|
|
<PrivateAssets>None</PrivateAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|