forked from biohazard999/DXNugetPackageBuilder
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommands.json
More file actions
24 lines (24 loc) · 722 Bytes
/
commands.json
File metadata and controls
24 lines (24 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"commands": {
"build": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "-ExecutionPolicy Bypass -File build.ps1"
},
"paket-bootstrapper": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "-ExecutionPolicy Bypass -File build.ps1 -Target Paket-Bootstrapper"
},
"paket-restore": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "-ExecutionPolicy Bypass -File build.ps1 -Target Paket-Restore"
},
"paket-install": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "-ExecutionPolicy Bypass -File build.ps1 -Target Paket-Install"
}
}
}