-
Notifications
You must be signed in to change notification settings - Fork 6
/
Directory.Build.props
32 lines (29 loc) · 1.16 KB
/
Directory.Build.props
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>
<!-- General Properties -->
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<RuntimeIdentifiers>linux-arm64;linux-x64;osx-arm64;osx-x64;win-arm64;win-x64</RuntimeIdentifiers>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" />
<PackageReference Include="Serilog.Sinks.Debug" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
</ItemGroup>
<!-- Metadata Variable -->
<PropertyGroup>
<CurrentYear>$([System.DateTime]::Now.Year)</CurrentYear>
</PropertyGroup>
<!-- Assembly Metadata-->
<PropertyGroup>
<Version Condition="'$(Version)' == ''">1.0.0-dev</Version>
<Authors>MAA Team</Authors>
<Owners>MAA Team</Owners>
<Company>MAA Assistant Arknights</Company>
<Copyright>Copyright © 2021-$(CurrentYear) MAA Team and Contributers. All rights reserved.</Copyright>
</PropertyGroup>
</Project>