-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
version.json
58 lines (58 loc) · 1.64 KB
/
version.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "8.0.4-beta.4",
"nugetPackageVersion": {
"semVer": 2, // optional. Set to either 1 or 2 to control how the NuGet package version string is generated. Default is 1.
"precision": "revision"
},
"semVer1NumericIdentifierPadding": 4,
"pathFilters": [
// optional list of paths to consider when calculating version height.
"!docs",
"!.git",
"!.vs",
"!.config",
"!.github",
"!.config",
"!Directory.Build.props",
"!Directory.Build.targets",
"!Directory.Packages.props",
"docker-compose.yml",
"docker-compose.override.yml",
"docker-compose.vs.debug.yml",
"docker-compose.vs.release.yml",
"docker-compose.dcrpoj",
"src/IdentityServer8.sln",
"!global.json",
"!IdentityServer8.DotNet.ruleset",
"!LICENSCE",
"!Nuget.config",
"!SECURITY.md",
"!SPONSORS.md",
"!README.md",
"!samples",
"!nuget"
],
"publicReleaseRefSpec": [
"^refs/heads/master$", // we release out of master
"^refs/tags/v\\d+\\.\\d+", // we also release tags starting with vN.N
"^refs/heads/develop$", // we release alpha out of develop
"^refs/heads/release/*" // we release beta out of release
],
"cloudBuild": {
"setVersionVariables": true,
"buildNumber": {
"enabled": true,
"includeCommitId": {
"when": "always",
"where": "buildMetadata"
}
}
},
"release": {
"tagName": "v{version}",
"branchName": "v{version}",
"versionIncrement": "minor",
"firstUnstableTag": "alpha"
}
}