Skip to content

Commit

Permalink
update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
justcoding121 committed Oct 19, 2017
1 parent 07dd5fe commit 3806a12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .build/default.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ $SolutionFile = "$SolutionRoot\$ProjectName.sln"

## This comes from the build server iteration
if(!$BuildNumber) { $BuildNumber = $env:APPVEYOR_BUILD_NUMBER }
if(!$BuildNumber) { $BuildNumber = "1"}
if(!$BuildNumber) { $BuildNumber = "0"}

## The build configuration, i.e. Debug/Release
if(!$Configuration) { $Configuration = $env:Configuration }
if(!$Configuration) { $Configuration = "Release" }

if(!$Version) { $Version = $env:APPVEYOR_BUILD_VERSION }
if(!$Version) { $Version = "1.0.$BuildNumber" }
if(!$Version) { $Version = "0.0.$BuildNumber" }

if(!$Branch) { $Branch = $env:APPVEYOR_REPO_BRANCH }
if(!$Branch) { $Branch = "local" }
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - Section names should be unique on each level.

# version format
version: 3.0.{build}
version: 0.0.{build}
image: Visual Studio 2017

shallow_clone: true
Expand Down

0 comments on commit 3806a12

Please sign in to comment.