-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathMSALWrapper.csproj
More file actions
32 lines (32 loc) · 1.68 KB
/
MSALWrapper.csproj
File metadata and controls
32 lines (32 loc) · 1.68 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
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Package Naming, Building, & Versioning -->
<PackageId>Microsoft.Authentication.MSALWrapper</PackageId>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Microsoft.Authentication.MSALWrapper</RootNamespace>
<PackageOutputPath>../</PackageOutputPath>
<PublishTrimmed>false</PublishTrimmed>
<!-- Human Metadata -->
<Title>Microsoft Authentication MSAL Wrapper</Title>
<RepositoryUrl>https://github.com/AzureAD/microsoft-authentication-cli</RepositoryUrl>
<Description>A library for quickly authenticating with various Azure resources</Description>
<PackageTags>MSAL;authentication</PackageTags>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<DefineConstants>PlatformWindows</DefineConstants>
</PropertyGroup>
<ItemGroup>
<!-- Stylecop required items -->
<AdditionalFiles Include="..\stylecop\stylecop.json" Link="stylecop.json" />
<Compile Include="..\stylecop\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1" />
</ItemGroup>
</Project>