Skip to content

Commit

Permalink
fix(core): version suffix is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Jul 28, 2024
1 parent c8bac90 commit 80bcb04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/core/Executors/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Builds an app via the `dotnet` cli command.

### version-suffix

- (number): Sets the value of the $(VersionSuffix) property to use when building the project. This only works if the $(Version) property isn't set. Then, $(Version) is set to the $(VersionPrefix) combined with the $(VersionSuffix), separated by a dash.
- (string): Sets the value of the $(VersionSuffix) property to use when building the project. This only works if the $(Version) property isn't set. Then, $(Version) is set to the $(VersionPrefix) combined with the $(VersionSuffix), separated by a dash.

### <span className="required">configuration</span>

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/executors/build/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"description": "Compiles for a specific framework. The framework must be defined in the project file"
},
"version-suffix": {
"type": "number",
"type": "string",
"description": "Sets the value of the $(VersionSuffix) property to use when building the project. This only works if the $(Version) property isn't set. Then, $(Version) is set to the $(VersionPrefix) combined with the $(VersionSuffix), separated by a dash."
},
"configuration": {
Expand Down

0 comments on commit 80bcb04

Please sign in to comment.