Skip to content

Commit 3806a12

Browse files
committed
update version numbers
1 parent 07dd5fe commit 3806a12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.build/default.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ $SolutionFile = "$SolutionRoot\$ProjectName.sln"
1010

1111
## This comes from the build server iteration
1212
if(!$BuildNumber) { $BuildNumber = $env:APPVEYOR_BUILD_NUMBER }
13-
if(!$BuildNumber) { $BuildNumber = "1"}
13+
if(!$BuildNumber) { $BuildNumber = "0"}
1414

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

1919
if(!$Version) { $Version = $env:APPVEYOR_BUILD_VERSION }
20-
if(!$Version) { $Version = "1.0.$BuildNumber" }
20+
if(!$Version) { $Version = "0.0.$BuildNumber" }
2121

2222
if(!$Branch) { $Branch = $env:APPVEYOR_REPO_BRANCH }
2323
if(!$Branch) { $Branch = "local" }

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# - Section names should be unique on each level.
88

99
# version format
10-
version: 3.0.{build}
10+
version: 0.0.{build}
1111
image: Visual Studio 2017
1212

1313
shallow_clone: true

0 commit comments

Comments
 (0)