Skip to content

Commit efb7ded

Browse files
committed
Fix version number being set
1 parent 3edb511 commit efb7ded

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

PokerTime.sln

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{D6A25E
4949
.prettierrc = .prettierrc
5050
Dockerfile = Dockerfile
5151
README.md = README.md
52+
version.json = version.json
5253
EndProjectSection
5354
EndProject
5455
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PokerTime.Web.Tests.Integration", "tests\PokerTime.Web.Tests.Integration\PokerTime.Web.Tests.Integration.csproj", "{D120FE6A-74F8-474E-9654-FC4E1CCD2B9E}"

version.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "1.3-alpha",
4-
"cloudBuild": {
5-
"setAllVariables": true,
6-
"buildNumber": {
7-
"enabled": true
2+
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3+
"version": "1.3.0-alpha",
4+
"cloudBuild": {
5+
"setAllVariables": true,
6+
"buildNumber": {
7+
"enabled": true
8+
}
9+
},
10+
"release": {
11+
"branchName": "release/v{version}"
12+
},
13+
"assemblyVersion": {
14+
"precision": "revision"
815
}
9-
},
10-
"release": {
11-
"branchName": "release/v{version}"
12-
}
13-
}
16+
}

0 commit comments

Comments
 (0)