-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathGraphTutorial.csproj
More file actions
26 lines (22 loc) · 1.02 KB
/
GraphTutorial.csproj
File metadata and controls
26 lines (22 loc) · 1.02 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.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>631dcab3-8851-478e-94b4-51ab1e5080fe</UserSecretsId>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Web" Version="3.10.0" />
<PackageReference Include="Microsoft.Identity.Web.GraphServiceClient" Version="3.10.0" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="3.10.0" />
<PackageReference Include="Stylecop.Analyzers" Version="1.2.0-beta.556">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="TimeZoneConverter" Version="7.0.0" />
</ItemGroup>
</Project>