-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (33 loc) · 1.76 KB
/
Copy pathDirectory.Build.props
File metadata and controls
41 lines (33 loc) · 1.76 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>
<LangVersion>14</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<!-- CS1591 (missing doc on a public member) stays suppressed - we ship the docs we have
without mandating 100% coverage. Every OTHER doc-comment diagnostic (malformed XML,
bad crefs, wrong param tags) is left as an error under warnings-as-errors, so the XML
docs we DO ship are correct. -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>Tom Fanning M0LTE</Authors>
<Copyright>Copyright © 2026 Tom Fanning</Copyright>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/M0LTE/tait-codeplug</PackageProjectUrl>
<RepositoryUrl>https://github.com/M0LTE/tait-codeplug</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile Condition="Exists('$(MSBuildProjectDirectory)/README.md')">README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="Exists('$(MSBuildProjectDirectory)/README.md')">
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>