Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 0511504

Browse files
author
Nate McMaster
committed
Bump version to 2.0.1
1 parent 128683b commit 0511504

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build/common.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile>
1010
<SignAssembly>true</SignAssembly>
1111
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
12-
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
1312
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1413
</PropertyGroup>
1514

version.props

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
<!-- This file may be overwritten by automation. Only values allowed here are VersionPrefix and VersionSuffix. -->
21
<Project>
32
<PropertyGroup>
4-
<VersionPrefix>2.0.0</VersionPrefix>
3+
<VersionPrefix>2.0.1</VersionPrefix>
4+
<VersionSuffix>rtm</VersionSuffix>
5+
<PackageVersion Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' == 'rtm' ">$(VersionPrefix)</PackageVersion>
6+
<PackageVersion Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' != 'rtm' ">$(VersionPrefix)-$(VersionSuffix)-final</PackageVersion>
7+
<VersionSuffix Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
58
</PropertyGroup>
69
</Project>

0 commit comments

Comments
 (0)