File size: 1,272 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 37 38 | <Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\CommonProjectProperties.xml" />
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<CheckEolTargetFramework>False</CheckEolTargetFramework>
<LangVersion>latest</LangVersion>
<!--
- The (indirect) System.Management dependency complains on older frameworks,
- but we use it carefully.
-->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<!-- nupkg information -->
<PropertyGroup>
<Title>Google APIs ASP.NET Core 3 Auth Extensions</Title>
<Description>
The Google APIs Client Library is a runtime client for working with Google Services.
The ASP.NET Core 3 Auth extension library contains a Google-specific OpenIdConnect auth handler.
Supports incremental auth, and an injectable IGoogleAuthProvider to supply Google credentials.
Supported Platforms:
- ASP.NET Core 3.0+
</Description>
<DefineConstants>$(DefineConstants);ASPNETCORE3</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="3.0.3" />
<ProjectReference Include="..\Google.Apis.Auth\Google.Apis.Auth.csproj" />
</ItemGroup>
</Project>
|