-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (22 loc) · 934 Bytes
/
Directory.Build.props
File metadata and controls
25 lines (22 loc) · 934 Bytes
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>
<Authors>LeanCode</Authors>
<Description>LeanCode Core library</Description>
<LangVersion>preview</LangVersion>
<OutputType>library</OutputType>
<TargetFramework>net10.0</TargetFramework>
<DebugType>portable</DebugType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
</PropertyGroup>
<ItemGroup>
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-ff4q-64jc-gx98" />
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-55p7-v223-x366" />
</ItemGroup>
<Import
Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"
Condition="Exists($([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../')))"
/>
</Project>