Skip to content

Commit

Permalink
Remove prerelease label on tagged builds
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed May 11, 2018
1 parent a4bb4b0 commit 9e65b88
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions version.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<Project>
<PropertyGroup>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<VersionSuffix>build</VersionSuffix>
<SourceRevisionId>$(APPVEYOR_REPO_COMMIT)</SourceRevisionId>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'">$(VersionPrefix)</PackageVersion>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true'">$(VersionPrefix)</PackageVersion>

<BuildNumber Condition=" '$(BuildNumber)' == '' ">$(APPVEYOR_BUILD_NUMBER)</BuildNumber>
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber>
Expand Down

0 comments on commit 9e65b88

Please sign in to comment.