File size: 1,661 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 39 40 41 42 43 44 45 46 47 48 | <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="..\CommonProjectProperties.xml" />
<!-- build configuration -->
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<!-- nupkg information -->
<PropertyGroup>
<Title>Google APIs Client Library</Title>
<Description>
The Google APIs Client Library is a runtime client for working with Google services.
This package includes auth components like user-credential, authorization code flow, etc. for making authenticated calls using the OAuth2 spec.
</Description>
</PropertyGroup>
<!-- package references; common then per-target -->
<ItemGroup>
<ProjectReference Include="..\Google.Apis.Core\Google.Apis.Core.csproj" />
<ProjectReference Include="..\Google.Apis\Google.Apis.csproj" />
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="5.0.0.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="System.Management" Version="7.0.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net462'">
<Reference Include="System.Net.Http" />
<Reference Include="System.Management" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'">
<PackageReference Include="System.Management" Version="7.0.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="OAuth2/AwsExternalAccountCredential.*.cs">
<DependentUpon>OAuth2/AwsExternalAccountCredential.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project> |