Skip to content

Commit

Permalink
fix(core): remove restriction of configuration (#823)
Browse files Browse the repository at this point in the history
Prior to this change the schema.jsons for build and publish required
the build configuration to be either Debug or Release. This change
removes that restriction, allowing build configurations with other names
  • Loading branch information
tomemelko authored Jan 30, 2024
1 parent b673b2f commit 49b341f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/core/src/executors/build/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"configuration": {
"type": "string",
"enum": ["Debug", "Release"],
"default": "Debug",
"description": "Defines the build configuration. The default for most projects is Debug, but you can override the build configuration settings in your project"
},
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/executors/publish/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"properties": {
"configuration": {
"type": "string",
"enum": ["Debug", "Release"],
"default": "Debug",
"description": "Defines the build configuration The default for most projects is Debug, but you can override the build configuration settings in your project."
},
Expand Down

0 comments on commit 49b341f

Please sign in to comment.