-
Notifications
You must be signed in to change notification settings - Fork 33
/
dotnet.csproj
24 lines (24 loc) · 1.24 KB
/
dotnet.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.16.1" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.16.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.16.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.16.1" />
<PackageReference Include="Microsoft.kiota.Serialization.Multipart" Version="1.16.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.16.1" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.16.1" />
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.421302">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<DocumentationFile>bin\Release\dotnet.xml</DocumentationFile>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1591</NoWarn>
</PropertyGroup>
</Project>