-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathAzureAuth.csproj
More file actions
44 lines (44 loc) · 2.16 KB
/
AzureAuth.csproj
File metadata and controls
44 lines (44 loc) · 2.16 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
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<DefineConstants>PlatformWindows</DefineConstants>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
</PropertyGroup>
<!-- Release configuration -->
<PropertyGroup Condition="'$(Configuration)'=='release'">
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<!-- Output an executable -->
<PackageId>microsoft.authentication.azureauth</PackageId>
<OutputType>Exe</OutputType>
<AssemblyName>azureauth</AssemblyName>
<RootNamespace>Microsoft.Authentication.AzureAuth</RootNamespace>
<NuspecFile>AzureAuth.nuspec</NuspecFile>
<NuspecProperties>$(NuspecProperties);Configuration=$(Configuration);Version=$(Version)$(VersionSuffix)</NuspecProperties>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</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.Identity.Client" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
<PackageReference Include="Microsoft.Office.Lasso" Version="2024.10.23.1" />
<PackageReference Include="Tomlyn" Version="0.11.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MSALWrapper\MSALWrapper.csproj" />
<ProjectReference Include="..\AdoPat\AdoPat.csproj" />
</ItemGroup>
<!-- Assemblies we need to manually mark as roots so they are not trimmed. -->
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<!-- Needed for Web mode on Windows -->
<TrimmerRootAssembly Include="System.Private.CoreLib" />
</ItemGroup>
</Project>