-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
version.props
36 lines (31 loc) · 1.41 KB
/
version.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
33
34
35
36
<!-- Modify this file to change assembly information.
WARNING: DO NOT MODIFY this file unless you have created a backup copy.
Incorrect changes to this file will make it impossible to load or build your
projects from the command-line or the IDE. -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Defines version related properties. The possible properties are:
$(VersionMajor)
$(VersionMinor)
$(VersionPatch)
$(VersionRevision)
$(VersionPrefix)
$(VersionSuffix)
$(PackageVersion)
$(SourceRevisionId)
$(BuildDate)
Typically, you will only set the $(VersionMajor), $(VersionMinor), and
possibly the $(VersionSuffix) properties here. Any of the remaining
properties are either derived from those or would be set by an automated (CI)
build process in the build/version.props file.
By default, $(VersionPrefix) is set to be equal to $(VersionMajor).$(VersionMinor).$(VersionPatch), and defaults to 1.0.0.
If $(VersionRevision) is provided, it is appended to $(VersionPrefix) as
$(VersionPrefix).$(VersionRevision).
Any properties defined in the build/version.props file will override the
values specified here. -->
<PropertyGroup>
<VersionMajor>6</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionPatch>0</VersionPatch>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
</Project>