Skip to content

Commit d4b9361

Browse files
committed
update version
1 parent 7aae48c commit d4b9361

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

.nuke/build.schema.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
"Restore",
3636
"ShowVersion",
3737
"Test",
38-
"UpdateVersion"
38+
"UpdateVersion",
39+
"ValidatePackageVersions",
40+
"ValidateReleaseManifest"
3941
]
4042
},
4143
"Verbosity": {
@@ -109,6 +111,11 @@
109111
"allOf": [
110112
{
111113
"properties": {
114+
"BranchCoverageThreshold": {
115+
"type": "integer",
116+
"description": "Minimum branch coverage percentage (0-100). CoverageReport fails if below this threshold",
117+
"format": "int32"
118+
},
112119
"Configuration": {
113120
"type": "string",
114121
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
@@ -117,6 +124,11 @@
117124
"Release"
118125
]
119126
},
127+
"CoverageThreshold": {
128+
"type": "integer",
129+
"description": "Minimum line coverage percentage (0-100). CoverageReport fails if below this threshold",
130+
"format": "int32"
131+
},
120132
"Runtime": {
121133
"type": "string",
122134
"description": "Target runtime identifier used by Publish target"

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
3232
To publish an RC: trigger workflow_dispatch with prerelease_suffix=rc.1 -->
3333
<PropertyGroup>
34-
<VersionPrefix>0.2.3</VersionPrefix>
34+
<VersionPrefix>0.2.4</VersionPrefix>
3535
<FileVersion Condition="'$(BuildNumber)' != ''">$(VersionPrefix).$(BuildNumber)</FileVersion>
3636
</PropertyGroup>
3737

0 commit comments

Comments
 (0)