-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (24 loc) · 1011 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
29 lines (24 loc) · 1011 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
26
27
28
29
<Project>
<PropertyGroup Label="Language / compiler">
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<PropertyGroup Label="Version">
<Version>3.5.0</Version>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<FileVersion>3.5.0.0</FileVersion>
<InformationalVersion>3.5.0</InformationalVersion>
</PropertyGroup>
<PropertyGroup Label="Authorship">
<Authors>Lee Messenger</Authors>
<Company>ImageResize</Company>
<Copyright>Copyright © Lee Messenger</Copyright>
</PropertyGroup>
<PropertyGroup Label="Build reproducibility">
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>