-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommon.Build.props
More file actions
25 lines (22 loc) · 977 Bytes
/
Common.Build.props
File metadata and controls
25 lines (22 loc) · 977 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>
<Import Project="Directory.Build.props" Condition="!$(DirectoryBuildPropsImported)" />
<PropertyGroup Label="Assembly">
<Version>0.11.0</Version>
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
<IsAotCompatible>true</IsAotCompatible>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup Label="Language">
<NoWarn>$(NoWarn);1591</NoWarn>
<RootNamespace>Falko.Logging</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>14</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Label="Description">
<Company>Falko</Company>
<Authors>Rima Falko; Timur Falko</Authors>
<Description>High-Performance Static Structured Logger with Minimal Allocations</Description>
<Copyright>Copyright (C) 2025, Falko</Copyright>
</PropertyGroup>
</Project>