-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSukalibur.csproj
48 lines (45 loc) · 2.93 KB
/
Sukalibur.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
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>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>65a20657-d3f5-403e-9a81-3e11f6e4edbc</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AppAny.HotChocolate.FluentValidation" Version="0.12.0" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="Bogus" Version="35.6.1" />
<PackageReference Include="FluentValidation" Version="11.11.0" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageReference Include="HotChocolate" Version="14.1.0" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.1.0" />
<PackageReference Include="HotChocolate.AspNetCore.Authorization" Version="14.1.0" />
<PackageReference Include="HotChocolate.Data" Version="14.1.0" />
<PackageReference Include="HotChocolate.Data.EntityFramework" Version="14.1.0" />
<PackageReference Include="HotChocolate.Data.Spatial" Version="14.1.0" />
<PackageReference Include="HotChocolate.Types.NodaTime" Version="14.1.0" />
<PackageReference Include="HotChocolate.Types.Spatial" Version="14.1.0" />
<PackageReference Include="HotChocolate.Validation" Version="14.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="8.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.11" />
<PackageReference Include="NetTopologySuite" Version="2.5.0" />
<PackageReference Include="NodaTime" Version="3.2.0" />
<PackageReference Include="NodaTime.Bogus" Version="3.0.2" />
<PackageReference Include="Npgsql" Version="8.0.6" />
<PackageReference Include="Npgsql.DependencyInjection" Version="8.0.6" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.11" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="8.0.11" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="8.0.11" />
<PackageReference Include="Npgsql.NetTopologySuite" Version="8.0.6" />
<PackageReference Include="Npgsql.NodaTime" Version="8.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.1.0" />
</ItemGroup>
</Project>