-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommon.Build.props
More file actions
24 lines (21 loc) · 942 Bytes
/
Common.Build.props
File metadata and controls
24 lines (21 loc) · 942 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
<Project>
<Import Project="Directory.Build.props" Condition="!$(DirectoryBuildPropsImported)" />
<PropertyGroup Label="Assembly">
<Version>1.0.0</Version>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<IsAotCompatible>true</IsAotCompatible>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup Label="Language">
<RootNamespace>Falko.Common</RootNamespace>
<LangVersion>13</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Label="Description">
<Company>Falko</Company>
<Authors>Rima Falko; Timur Falko</Authors>
<Description>A bundle of libraries that contains reusable code used across other projects</Description>
<Copyright>Copyright (C) 2024-2025, Falko</Copyright>
</PropertyGroup>
</Project>