-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (17 loc) · 880 Bytes
/
Directory.Build.props
File metadata and controls
19 lines (17 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Don't warn about missing documentation -->
<NoWarn>CS1591</NoWarn>
<!-- NuGet Properties -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/j4asper/FlightRadar</RepositoryUrl>
<PackageProjectUrl>https://github.com/j4asper/FlightRadar</PackageProjectUrl>
<Authors>Jasper Christiansen</Authors>
<Description>This is an unofficial FlightRadar24 API wrapper designed to provide easy and efficient access to the FlightRadar24 data.</Description>
</PropertyGroup>
</Project>