-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (27 loc) · 1.23 KB
/
Copy pathDirectory.Build.props
File metadata and controls
27 lines (27 loc) · 1.23 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
<Project>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net10.0</TargetFramework>
<Copyright>© Panoramic Data Limited $([System.DateTime]::Now.Year)</Copyright>
<Company>Panoramic Data Limited</Company>
<Authors>Panoramic Data Limited</Authors>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<MSBuildWarningsAsErrors>MSB3277</MSBuildWarningsAsErrors>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>All</AnalysisMode>
<NuGetAuditMode>All</NuGetAuditMode>
</PropertyGroup>
<ItemGroup>
<!--
NU1902: NCalc.Core / NCalcSync 5.12.0 (transitive via PanoramicData.NCalcExtensions)
carry moderate-severity advisory GHSA-3w5p-95mh-gq75. No patched NCalc has shipped yet;
the same dependency is tolerated in MagicSuite (ReportMagic Directory.Build.props).
Remove this suppression once PanoramicData.NCalcExtensions references a patched NCalc.
-->
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-3w5p-95mh-gq75" />
</ItemGroup>
</Project>