forked from spectreconsole/open-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotnet.json
More file actions
61 lines (61 loc) · 1.79 KB
/
dotnet.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "../schema.json",
"opencli": "0.2",
"name": "dotnet",
"description": "The .NET CLI",
"info": {
"version": "9.0.1",
"license": {
"name": "MIT License",
"identifier": "MIT",
"url": "https://opensource.org/license/mit"
}
},
"options": [
{
"name": "--help",
"aliases": [ "-h" ],
"description": "Display help."
},
{
"name": "--info",
"description": "Display .NET information."
},
{
"name": "--list-sdks",
"description": "Display the installed SDKs."
},
{
"name": "--list-runtimes",
"description": "Display the installed runtimes."
}
],
"commands": [
{
"name": "build",
"arguments": [
{
"name": "PROJECT | SOLUTION",
"description": "The project or solution file to operate on. If a file is not specified, the command will search the current directory for one."
}
],
"options": [
{
"name": "--configuration",
"aliases": [ "-c" ],
"description": "The configuration to use for building the project. The default for most projects is 'Debug'.",
"arguments": [
{
"name": "CONFIGURATION",
"required": true,
"arity": {
"minimum": 1,
"maximum": 1
}
}
]
}
]
}
]
}