Skip to content

Commit 49b341f

Browse files
authored
fix(core): remove restriction of configuration (#823)
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
1 parent b673b2f commit 49b341f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/core/src/executors/build/schema.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
},
1616
"configuration": {
1717
"type": "string",
18-
"enum": ["Debug", "Release"],
1918
"default": "Debug",
2019
"description": "Defines the build configuration. The default for most projects is Debug, but you can override the build configuration settings in your project"
2120
},

packages/core/src/executors/publish/schema.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"properties": {
88
"configuration": {
99
"type": "string",
10-
"enum": ["Debug", "Release"],
1110
"default": "Debug",
1211
"description": "Defines the build configuration The default for most projects is Debug, but you can override the build configuration settings in your project."
1312
},

0 commit comments

Comments
 (0)