-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (37 loc) · 1.85 KB
/
Copy pathDirectory.Build.props
File metadata and controls
41 lines (37 loc) · 1.85 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Static analysis. Recommended (not All) gives correctness/reliability
rules without the design-opinion noise that fights intentional
patterns (broad catch in the receive loop, no ConfigureAwait in a
non-UI lib). TreatWarningsAsErrors already makes findings gate CI —
no ci.yml change needed. Generated code is excluded via .editorconfig. -->
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>Recommended</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<Authors>UltimateSeeSharp</Authors>
<Company>UltimateSeeSharp</Company>
<Product>MavNet</Product>
<Copyright>Copyright (c) UltimateSeeSharp</Copyright>
<Version>0.1.0</Version>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/UltimateSeeSharp/MavNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/UltimateSeeSharp/MavNet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>mavlink;drone;uav;px4;ardupilot</PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>