-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.json
More file actions
34 lines (34 loc) · 1.11 KB
/
Copy pathcommands.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"commands": {
"00 Clean": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "/c build\\build.ps1 '-t:Clean'"
},
"01 Build": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "/c build\\build.ps1 '-p:Configuration=Debug;DeployLocal=False'"
},
"02 Deploy Content Only": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "/c build\\build.ps1 '-p:Configuration=Debug;DeployLocal=True;DeployBinaries=False'"
},
"03 Deploy All": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "/c build\\build.ps1 '-p:Configuration=Debug;DeployLocal=True;DeployBinaries=True'"
},
"04 Unicorn Sync": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "/c build\\unicorn-sync.ps1 'http://sitecore9/unicorn.aspx' '1B82C9A621139A34F98B853E746B79765616EC794C5CFCD75CD2EC51E3'"
},
"05 Front-end Sync": {
"fileName": "powershell.exe",
"workingDirectory": ".",
"arguments": "/c build\\fe-sync.ps1"
}
}
}