-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathIdentityServer.csproj
More file actions
48 lines (48 loc) · 2.86 KB
/
IdentityServer.csproj
File metadata and controls
48 lines (48 loc) · 2.86 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
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>38ced442-cf32-4289-bb08-57d4a78831b3</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.ReCaptcha" Version="1.7.0" />
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="6.3.6" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.WsFederation" Version="6.0.25" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="6.0.25" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="6.0.25" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.25" />
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="6.0.25" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.25" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="3.21.120" />
<PackageReference Include="Rsk.Saml.DuendeIdentityServer" Version="8.0.0" />
<PackageReference Include="Rsk.Saml.DuendeIdentityServer.EntityFramework" Version="8.0.0" />
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.25" />
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="6.3.0" />
<PackageReference Include="System.ServiceModel.Http" Version="6.1.0" />
<PackageReference Include="System.ServiceModel.Primitives" Version="6.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="Resources\testclient.cer">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Pages\Ciba\All.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Ciba\Consent.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Ciba\Index.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Ciba\_ScopeListItem.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Device\Index.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Device\Success.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Device\_ScopeListItem.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Diagnostics\Index.cshtml" />
<_ContentIncludedByDefault Remove="Pages\Grants\Index.cshtml" />
<_ContentIncludedByDefault Remove="Pages\ExternalLogin\Callback.cshtml" />
<_ContentIncludedByDefault Remove="Pages\ExternalLogin\Challenge.cshtml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\..\..\LicenseKey.cs" Link="LicenseKey.cs" />
</ItemGroup>
</Project>