You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Copy file name to clipboardExpand all lines: packages/core/src/executors/build/schema.json
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@
15
15
},
16
16
"configuration": {
17
17
"type": "string",
18
-
"enum": ["Debug", "Release"],
19
18
"default": "Debug",
20
19
"description": "Defines the build configuration. The default for most projects is Debug, but you can override the build configuration settings in your project"
Copy file name to clipboardExpand all lines: packages/core/src/executors/publish/schema.json
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,6 @@
7
7
"properties": {
8
8
"configuration": {
9
9
"type": "string",
10
-
"enum": ["Debug", "Release"],
11
10
"default": "Debug",
12
11
"description": "Defines the build configuration The default for most projects is Debug, but you can override the build configuration settings in your project."
0 commit comments