-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion.props
More file actions
20 lines (16 loc) · 850 Bytes
/
Version.props
File metadata and controls
20 lines (16 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<!-- ManpLab Version Configuration -->
<!-- This is the single source of truth for version numbers -->
<!-- Version format: Major.Minor.Patch -->
<VersionPrefix>1.5.1</VersionPrefix>
<!-- VersionSuffix: Leave empty for releases, or use "beta", "rc1", etc. -->
<VersionSuffix></VersionSuffix>
<!-- Build/Revision number - auto-increments on each build -->
<!-- Format: MSIX requires 4-part version: Major.Minor.Patch.Build -->
<FileVersion>$(VersionPrefix).0</FileVersion>
<!-- Informational version shown in About dialog -->
<InformationalVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</InformationalVersion>
<InformationalVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</InformationalVersion>
</PropertyGroup>
</Project>