| 1234567891011121314151617181920212223242526272829303132333435363738 | <Project Sdk="Microsoft.NET.Sdk">  <Import Project="..\Grpc.Core\Version.csproj.include" />  <Import Project="..\Grpc.Core\Common.csproj.include" />  <PropertyGroup>    <Copyright>Copyright 2015, Google Inc.</Copyright>    <AssemblyTitle>gRPC C# Auth</AssemblyTitle>    <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>    <Authors>Google Inc.</Authors>    <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>    <DefineConstants>$(DefineConstants);SIGNED</DefineConstants>    <AssemblyName>Grpc.Auth</AssemblyName>    <PackageId>Grpc.Auth</PackageId>    <PackageTags>gRPC RPC Protocol HTTP/2 Auth OAuth2</PackageTags>    <PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>    <PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>    <NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.5' ">1.6.0</NetStandardImplicitPackageVersion>  </PropertyGroup>  <ItemGroup>    <Compile Include="..\Grpc.Core\Version.cs" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="Google.Apis.Auth" Version="1.21.0" />  </ItemGroup>  <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">    <Reference Include="System" />    <Reference Include="Microsoft.CSharp" />  </ItemGroup></Project>
 |