-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathMicrosoft.Kiota.Authentication.Azure.csproj
More file actions
26 lines (24 loc) · 1.39 KB
/
Copy pathMicrosoft.Kiota.Authentication.Azure.csproj
File metadata and controls
26 lines (24 loc) · 1.39 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Kiota authentication provider implementation with Azure Identity.</Description>
<AssemblyTitle>Kiota Azure Identity Authentication Library for dotnet</AssemblyTitle>
<!-- NET 5 target to be removed on next major version-->
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnablePackageValidation>true</EnablePackageValidation>
<GenerateCompatibilitySuppressionFile>false</GenerateCompatibilitySuppressionFile>
</PropertyGroup>
<!-- Package references -->
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.50.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<ProjectReference Include="..\..\abstractions\Microsoft.Kiota.Abstractions.csproj" />
</ItemGroup>
<!-- NET 5 target to be removed on next major version-->
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0' or '$(TargetFramework)'== 'netStandard2.0' or '$(TargetFramework)' == 'netStandard2.1'">
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="[8.0.1,)" />
</ItemGroup>
</Project>