-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (26 loc) · 1.39 KB
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (26 loc) · 1.39 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
<Project>
<PropertyGroup>
<!-- Single source of truth for NuGet package version. Bump here, commit, push -->
<!-- master. CI reads this via `dotnet msbuild -getProperty:Version` and uses it -->
<!-- for both `dotnet pack` and the git tag. No GitVersion, no override flags. -->
<Version>3.1.0</Version>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)keypair.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<Authors>Mario Toffia</Authors>
<Copyright>© 2016 - 2026 Mario Toffia</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/mariotoffia/FluentDocker</RepositoryUrl>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!-- Suppress until nullable is fully enabled in main lib -->
<NoWarn>$(NoWarn);CA1062</NoWarn>
<!-- Suppress culture-specific string rules (library targets invariant culture) -->
<NoWarn>$(NoWarn);CA1305;CA1304;CA1310;CA1311</NoWarn>
<!-- CA1507: all hits are [JsonProperty] serialization keys, not symbol refs — nameof is wrong here -->
<NoWarn>$(NoWarn);CA1507</NoWarn>
</PropertyGroup>
</Project>