-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (28 loc) · 2.42 KB
/
Directory.Build.props
File metadata and controls
32 lines (28 loc) · 2.42 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
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" Condition="'' != $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<!-- ╭──────────────────────────────────────────────────────────────────────╮
│ Target Framework │
╰──────────────────────────────────────────────────────────────────────╯ -->
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<!-- ╭──────────────────────────────────────────────────────────────────────╮
│ Package Info. │
╰──────────────────────────────────────────────────────────────────────╯ -->
<PropertyGroup>
<Authors>Wolf Bublitz</Authors>
<Description>Common base types for WB.Logging.</Description>
<PackageTags>WB.Logging</PackageTags>
<PackageProjectUrl>https://github.com/WolfBublitz/WB.Logging</PackageProjectUrl>
<RepositoryUrl>https://github.com/WolfBublitz/WB.Logging</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- ╭──────────────────────────────────────────────────────────────────────╮
│ Nullability Settings │
╰──────────────────────────────────────────────────────────────────────╯ -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup>
</Project>