This repository was archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGatekeeper.Server.Web.csproj
More file actions
57 lines (51 loc) · 3.18 KB
/
Gatekeeper.Server.Web.csproj
File metadata and controls
57 lines (51 loc) · 3.18 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
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Certes" Version="2.3.4" />
<PackageReference Include="Gatekeeper.LdapServerLibrary" Version="0.0.10-alpha" />
<PackageReference Include="Gatekeeper.SCIM.Client" Version="0.0.4-alpha" />
<PackageReference Include="Grpc.AspNetCore" Version="2.35.0" />
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.35.0" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.19" />
<PackageReference Include="HangFire.Core" Version="1.7.19" />
<PackageReference Include="Hangfire.PostgreSql" Version="1.8.2" />
<PackageReference Include="JWT" Version="8.1.3" />
<PackageReference Include="MailKit" Version="2.10.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="5.0.3" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="5.0.3" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Extensions" Version="5.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.8.0" />
<PackageReference Include="Microsoft.ReverseProxy" Version="1.0.0-preview.8.21065.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.2.22" />
<PackageReference Include="MiniProfiler.EntityFrameworkCore" Version="4.2.22" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.11.0" />
<PackageReference Include="NLog" Version="4.7.8" />
<PackageReference Include="NodaTime.Serialization.Protobuf" Version="2.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="5.0.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="5.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gatekeeper.Client\Gatekeeper.Client.csproj" />
<ProjectReference Include="..\Gatekeeper.Shared.ClientAndWeb\Gatekeeper.Shared.ClientAndWeb.csproj" />
<ProjectReference Include="..\Gatekeeper.Shared.LdapAndWeb\Gatekeeper.Shared.LdapAndWeb.csproj" />
</ItemGroup>
<ItemGroup>
<Watch Include="../**/*.razor" />
<Watch Include="../**/*.proto" />
<Watch Include="../**/*.cs" Exclude="../**/*.g.cs" />
</ItemGroup>
</Project>