|
1 | 1 | { |
2 | 2 | "$schema": "../schema.json", |
3 | 3 | "opencli": "0.1", |
| 4 | + "command": { |
| 5 | + "name": "dotnet", |
| 6 | + "options": [ |
| 7 | + { |
| 8 | + "name": "--help", |
| 9 | + "aliases": [ "-h" ], |
| 10 | + "description": "Display help." |
| 11 | + }, |
| 12 | + { |
| 13 | + "name": "--info", |
| 14 | + "description": "Display .NET information." |
| 15 | + }, |
| 16 | + { |
| 17 | + "name": "--list-sdks", |
| 18 | + "description": "Display the installed SDKs." |
| 19 | + }, |
| 20 | + { |
| 21 | + "name": "--list-runtimes", |
| 22 | + "description": "Display the installed runtimes." |
| 23 | + } |
| 24 | + ], |
| 25 | + "commands": [ |
| 26 | + { |
| 27 | + "name": "build", |
| 28 | + "arguments": [ |
| 29 | + { |
| 30 | + "name": "PROJECT | SOLUTION", |
| 31 | + "description": "The project or solution file to operate on. If a file is not specified, the command will search the current directory for one.", |
| 32 | + } |
| 33 | + ], |
| 34 | + "options": [ |
| 35 | + { |
| 36 | + "name": "--configuration", |
| 37 | + "aliases": [ "-c" ], |
| 38 | + "description": "The configuration to use for building the project. The default for most projects is 'Debug'.", |
| 39 | + "arguments": [ |
| 40 | + { |
| 41 | + "name": "CONFIGURATION", |
| 42 | + "required": true, |
| 43 | + "arity": { |
| 44 | + "minimum": 1, |
| 45 | + "maximum": 1 |
| 46 | + } |
| 47 | + } |
| 48 | + ] |
| 49 | + } |
| 50 | + ] |
| 51 | + } |
| 52 | + ] |
| 53 | + }, |
4 | 54 | "info": { |
5 | 55 | "title": "dotnet", |
6 | 56 | "version": "9.0.1", |
|
10 | 60 | "identifier": "MIT", |
11 | 61 | "url": "https://opensource.org/license/mit" |
12 | 62 | } |
13 | | - }, |
14 | | - "options": [ |
15 | | - { |
16 | | - "name": "--help", |
17 | | - "aliases": [ "-h" ], |
18 | | - "description": "Display help." |
19 | | - }, |
20 | | - { |
21 | | - "name": "--info", |
22 | | - "description": "Display .NET information." |
23 | | - }, |
24 | | - { |
25 | | - "name": "--list-sdks", |
26 | | - "description": "Display the installed SDKs." |
27 | | - }, |
28 | | - { |
29 | | - "name": "--list-runtimes", |
30 | | - "description": "Display the installed runtimes." |
31 | | - } |
32 | | - ], |
33 | | - "commands": [ |
34 | | - { |
35 | | - "name": "build", |
36 | | - "arguments": [ |
37 | | - { |
38 | | - "name": "PROJECT | SOLUTION", |
39 | | - "description": "The project or solution file to operate on. If a file is not specified, the command will search the current directory for one.", |
40 | | - } |
41 | | - ], |
42 | | - "options": [ |
43 | | - { |
44 | | - "name": "--configuration", |
45 | | - "aliases": [ "-c" ], |
46 | | - "description": "The configuration to use for building the project. The default for most projects is 'Debug'.", |
47 | | - "arguments": [ |
48 | | - { |
49 | | - "name": "CONFIGURATION", |
50 | | - "required": true, |
51 | | - "arity": { |
52 | | - "minimum": 1, |
53 | | - "maximum": 1 |
54 | | - } |
55 | | - } |
56 | | - ] |
57 | | - } |
58 | | - ] |
59 | | - } |
60 | | - ] |
| 63 | + } |
61 | 64 | } |
0 commit comments