-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (21 loc) · 953 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (21 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<!--
Version is the single source of truth for the release. scripts/verify-release-package.ps1
reads it and requires package.json, package-lock.json and any release tag to match.
AssemblyVersion is deliberately held at the major.minor baseline so that patch
releases keep a stable binding identity. Do not raise it in step with Version;
FileVersion carries the precise build number instead.
-->
<Version>1.4.0</Version>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.4.0.0</FileVersion>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>