diff --git a/src/UriBuilder.Fluent.UnitTests/project.json b/src/UriBuilder.Fluent.UnitTests/project.json index 0dd71a6..4e2db8c 100644 --- a/src/UriBuilder.Fluent.UnitTests/project.json +++ b/src/UriBuilder.Fluent.UnitTests/project.json @@ -5,7 +5,7 @@ "dependencies": { "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029", - "UriBuilder.Fluent": "1.0.*" + "UriBuilder.Fluent": "1.0.0-*" }, "frameworks": { diff --git a/update-projectjson.ps1 b/update-projectjson.ps1 index 4dc5d69..aa42f15 100644 --- a/update-projectjson.ps1 +++ b/update-projectjson.ps1 @@ -2,7 +2,7 @@ $projectJsonFileLocation = "src/UriBuilder.Fluent/project.json" $newVersion = $env:APPVEYOR_REPO_TAG_NAME if($newVersion -eq $null) { - $newVersion = "${env:APPVEYOR_BUILD_VERSION}-autobuild" + $newVersion = "1.0.0-${env:APPVEYOR_BUILD_NUMBER}" } if($newVersion -eq $null) {