|
1 | 1 | {
|
2 | 2 | "$schema": "http://json-schema.org/draft-04/schema#",
|
3 |
| - "properties": { |
4 |
| - "AutoStash": { |
5 |
| - "type": "boolean" |
6 |
| - }, |
7 |
| - "CodecovToken": { |
8 |
| - "type": "string", |
9 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
10 |
| - }, |
11 |
| - "Configuration": { |
12 |
| - "type": "string", |
13 |
| - "enum": [ |
14 |
| - "Debug", |
15 |
| - "Release" |
16 |
| - ] |
17 |
| - }, |
18 |
| - "DiscordWebhook": { |
19 |
| - "type": "string", |
20 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
21 |
| - }, |
22 |
| - "FeedzNuGetApiKey": { |
23 |
| - "type": "string", |
24 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
25 |
| - }, |
26 |
| - "GitHubReleaseGitHubToken": { |
27 |
| - "type": "string", |
28 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
29 |
| - }, |
30 |
| - "IgnoreFailedSources": { |
31 |
| - "type": "boolean", |
32 |
| - "description": "Ignore unreachable sources during Restore" |
33 |
| - }, |
34 |
| - "Major": { |
35 |
| - "type": "boolean" |
36 |
| - }, |
37 |
| - "MastodonAccessToken": { |
38 |
| - "type": "string", |
39 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
40 |
| - }, |
41 |
| - "PublicNuGetApiKey": { |
42 |
| - "type": "string", |
43 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
44 |
| - }, |
45 |
| - "SignPathApiToken": { |
46 |
| - "type": "string", |
47 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
48 |
| - }, |
49 |
| - "SignPathSettings": { |
50 |
| - "$ref": "#/definitions/SignPathSettings" |
51 |
| - }, |
52 |
| - "SlackWebhook": { |
53 |
| - "type": "string", |
54 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
55 |
| - }, |
56 |
| - "Solution": { |
57 |
| - "type": "string", |
58 |
| - "description": "Path to a solution file that is automatically loaded" |
59 |
| - }, |
60 |
| - "TestDegreeOfParallelism": { |
61 |
| - "type": "integer", |
62 |
| - "format": "int32" |
63 |
| - }, |
64 |
| - "TwitterAccessToken": { |
65 |
| - "type": "string", |
66 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
67 |
| - }, |
68 |
| - "TwitterAccessTokenSecret": { |
69 |
| - "type": "string", |
70 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
71 |
| - }, |
72 |
| - "TwitterConsumerKey": { |
73 |
| - "type": "string", |
74 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
75 |
| - }, |
76 |
| - "TwitterConsumerSecret": { |
77 |
| - "type": "string", |
78 |
| - "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
79 |
| - }, |
80 |
| - "UseHttps": { |
81 |
| - "type": "boolean" |
82 |
| - } |
83 |
| - }, |
84 | 3 | "definitions": {
|
85 | 4 | "Host": {
|
86 | 5 | "type": "string",
|
|
231 | 150 | }
|
232 | 151 | }
|
233 | 152 | },
|
234 |
| - "$ref": "#/definitions/NukeBuild" |
| 153 | + "allOf": [ |
| 154 | + { |
| 155 | + "properties": { |
| 156 | + "AutoStash": { |
| 157 | + "type": "boolean" |
| 158 | + }, |
| 159 | + "CodecovToken": { |
| 160 | + "type": "string", |
| 161 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 162 | + }, |
| 163 | + "Configuration": { |
| 164 | + "type": "string", |
| 165 | + "enum": [ |
| 166 | + "Debug", |
| 167 | + "Release" |
| 168 | + ] |
| 169 | + }, |
| 170 | + "DiscordWebhook": { |
| 171 | + "type": "string", |
| 172 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 173 | + }, |
| 174 | + "FeedzNuGetApiKey": { |
| 175 | + "type": "string", |
| 176 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 177 | + }, |
| 178 | + "GitHubReleaseGitHubToken": { |
| 179 | + "type": "string", |
| 180 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 181 | + }, |
| 182 | + "IgnoreFailedSources": { |
| 183 | + "type": "boolean", |
| 184 | + "description": "Ignore unreachable sources during Restore" |
| 185 | + }, |
| 186 | + "Major": { |
| 187 | + "type": "boolean" |
| 188 | + }, |
| 189 | + "MastodonAccessToken": { |
| 190 | + "type": "string", |
| 191 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 192 | + }, |
| 193 | + "PublicNuGetApiKey": { |
| 194 | + "type": "string", |
| 195 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 196 | + }, |
| 197 | + "SignPathApiToken": { |
| 198 | + "type": "string", |
| 199 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 200 | + }, |
| 201 | + "SignPathSettings": { |
| 202 | + "$ref": "#/definitions/SignPathSettings" |
| 203 | + }, |
| 204 | + "SlackWebhook": { |
| 205 | + "type": "string", |
| 206 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 207 | + }, |
| 208 | + "Solution": { |
| 209 | + "type": "string", |
| 210 | + "description": "Path to a solution file that is automatically loaded" |
| 211 | + }, |
| 212 | + "TestDegreeOfParallelism": { |
| 213 | + "type": "integer", |
| 214 | + "format": "int32" |
| 215 | + }, |
| 216 | + "TwitterAccessToken": { |
| 217 | + "type": "string", |
| 218 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 219 | + }, |
| 220 | + "TwitterAccessTokenSecret": { |
| 221 | + "type": "string", |
| 222 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 223 | + }, |
| 224 | + "TwitterConsumerKey": { |
| 225 | + "type": "string", |
| 226 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 227 | + }, |
| 228 | + "TwitterConsumerSecret": { |
| 229 | + "type": "string", |
| 230 | + "default": "Secrets must be entered via 'nuke :secrets [profile]'" |
| 231 | + }, |
| 232 | + "UseHttps": { |
| 233 | + "type": "boolean" |
| 234 | + } |
| 235 | + } |
| 236 | + }, |
| 237 | + { |
| 238 | + "$ref": "#/definitions/NukeBuild" |
| 239 | + } |
| 240 | + ] |
235 | 241 | }
|
0 commit comments