-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebApp-OpenIDConnect-DotNet.csproj
29 lines (24 loc) · 1.02 KB
/
WebApp-OpenIDConnect-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
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UserSecretsId>aspnet-WebApp_OpenIDConnect_DotNet-81EA87AD-E64D-4755-A1CC-5EA47F49B5D8</UserSecretsId>
<WebProject_DirectoryAccessLevelKey>0</WebProject_DirectoryAccessLevelKey>
</PropertyGroup>
<ItemGroup>
<Compile Remove="AppCreationScripts\**" />
<Compile Remove="ReadmeFiles\**" />
<Content Remove="AppCreationScripts\**" />
<Content Remove="ReadmeFiles\**" />
<EmbeddedResource Remove="AppCreationScripts\**" />
<EmbeddedResource Remove="ReadmeFiles\**" />
<None Remove="AppCreationScripts\**" />
<None Remove="ReadmeFiles\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI" Version="3.0.0" />
<PackageReference Include="Microsoft.Graph" Version="1.14.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
</ItemGroup>
</Project>