-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathIdentityServer.ClientSample.csproj
More file actions
25 lines (20 loc) · 975 Bytes
/
IdentityServer.ClientSample.csproj
File metadata and controls
25 lines (20 loc) · 975 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Product>Active Login</Product>
<Description>ASP.NET sample for Active Login.</Description>
<Authors>Active Solution</Authors>
<Company>Active Solution</Company>
<Copyright>Copyright © 2018-2023 Active Solution</Copyright>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<UserSecretsId>c579bda4-7b07-41ce-9586-a04cd72641fd</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.2" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
</ItemGroup>
</Project>