-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (24 loc) · 1.19 KB
/
Copy pathDirectory.Build.props
File metadata and controls
25 lines (24 loc) · 1.19 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningLevel>7</WarningLevel>
<!-- Suppress Akka.Remote known vulnerability NU1904 — internal cluster only -->
<!-- CA1848: LoggerMessage source-gen perf — will add later as optimization pass -->
<!-- CA1305: Locale-sensitive conversions — all metrics data is invariant culture -->
<!-- CA1805: Explicit default initialization — acceptable for clarity in config classes -->
<NoWarn>NU1904;NU1608;CA1848;CA1873;CA1305;CA1805</NoWarn>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<!-- Versioning -->
<Version>0.1.0</Version>
<Authors>Thunderbolt Contributors</Authors>
<Product>Thunderbolt</Product>
<Description>Enterprise-grade distributed load and performance testing platform</Description>
</PropertyGroup>
</Project>