-
Notifications
You must be signed in to change notification settings - Fork 7
/
Directory.Build.props
30 lines (26 loc) · 1.11 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
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>preview</LangVersion>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<NuGetAudit>false</NuGetAudit>
<DefineConstants>$(DefineConstants)$(FeatureFlags.Replace("#",";"))</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<Version>2.0.2</Version>
<Authors>Kir_Antipov</Authors>
<Company>$(Authors)</Company>
<ReleaseYear>2023</ReleaseYear>
<Copyright>Copyright © $(ReleaseYear) $(Authors)</Copyright>
<Copyright Condition="'$([System.DateTime]::Now.Year)' != '$(ReleaseYear)'">Copyright © $(ReleaseYear)-$([System.DateTime]::Now.Year) $(Authors)</Copyright>
<RepositoryUrl>https://github.com/Kir-Antipov/HotAvalonia</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.0.0</AvaloniaVersion>
</PropertyGroup>
</Project>