-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution-deploy-map.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathsolution-deploy-map.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"activeEnvironment": "<DevEnvironmentName>",
"activeSolution": "<SolutionName>",
"webresourceSolution": "<WebResourceSolutionName>",
"srcProfile": "<srcProfile>",
"targetProfile": "<targetProfile>",
"targetInstance": "<StagingInstanceName>",
"settings": {
"solutionExport": {
"type": "Managed",
"autoCommit": true,
"versionBump": "revision",
"publishBeforeExport": true
},
"import": {
"mode": "upgrade",
"maxAsyncWaitMinutes": 120,
"activatePlugins": true,
"publishChanges": false,
"skipLowerVersion": false,
"forceOverwrite": false,
"requireConfirm": true
},
"pluginPush": {
"configuration": "Debug",
"msbuildVerbosity": "minimal",
"restore": false
}
},
"environments": {
"<DevEnvironmentName>": {
"url": "<dev-env-url>",
"solutions": {
"<SolutionName>": {
"plugins": {
"<AssemblyName>": "<path/to/Assembly/Assembly.csproj>",
"<AnotherAssemblyName>": "<path/to/AnotherAssembly/AnotherAssembly.csproj>"
},
"webresources": {
"<publisher_/path/to/script.js>": "<path/to/local/script.js>",
"<publisher_/path/to/page.html>": "<path/to/local/page.html>"
}
}
}
}
}
}