-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOpenSky.API.csproj
83 lines (76 loc) · 3.94 KB
/
OpenSky.API.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<Authors>OpenSky project</Authors>
<Company>OpenSky</Company>
<Product>OpenSky</Product>
<Description>Core API for OpenSky</Description>
<Copyright>OpenSky project 2021-2023</Copyright>
<UserSecretsId>bd3c3b45-7e32-4368-838d-2fcf013bdb71</UserSecretsId>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/opensky-to/api</RepositoryUrl>
<PackageProjectUrl>https://www.opensky.to</PackageProjectUrl>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>$(ProjectDir)bin\Debug\OpenSky.API.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>$(ProjectDir)bin\Release\OpenSky.API.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommonPasswordsValidator" Version="1.4.0" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="GeoCoordinate.NetCore" Version="1.0.0.1" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="MailKit" Version="4.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.14" />
<PackageReference Include="Microsoft.AspNetCore.HttpOverrides" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.14" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="7.0.14" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.14">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.DynamicLinq" Version="7.3.7" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OpenSky.AirportsJSON" Version="0.3.0" />
<PackageReference Include="OpenSky.FlightLogXML" Version="0.1.8" />
<PackageReference Include="OpenSky.S2Geometry" Version="0.2.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
<PackageReference Include="SkiaSharp" Version="2.88.6" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
<PackageReference Include="Z.EntityFramework.Extensions.EFCore" Version="7.101.1" />
</ItemGroup>
<ItemGroup>
<None Update="Datasets\a380airports.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Datasets\cargo_types.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Datasets\ICAO.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Datasets\top50airports.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="EmailTemplates\Notification.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="EmailTemplates\ResetPassword.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="EmailTemplates\ValidateEmail.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Migrations\" />
</ItemGroup>
</Project>