File size: 1,153 Bytes
7b715bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="..\CommonProjectProperties.xml" />
<!-- build configuration -->
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<!-- nupkg information -->
<PropertyGroup>
<Title>Google APIs Core Client Library</Title>
<Description>
The Google APIs Core Library contains the Google APIs HTTP layer, JSON support, Data-store, logging and so on.
</Description>
</PropertyGroup>
<!-- package references; common then per-target -->
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="5.0.0.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net462'">
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Compile Include="../../../third_party/System.Net.Http/GzipDeflateHandler.cs" />
<Compile Include="../../../third_party/System.Net.Http/StreamReplacingHttpContent.cs" />
</ItemGroup>
</Project>
|