-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevEnv.code-workspace
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathDevEnv.code-workspace
File metadata and controls
68 lines (68 loc) · 1.71 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
62
63
64
65
66
67
68
{
"folders": [
{
"name": "WinCC OA Debugger Extension",
"path": "."
},
{
"name": "Debug Adapter Package",
"path": "../../npm-winccoa-repos/npm-winccoa-debugger"
},
{
"name": "DevEnv3.21",
"path": "../../wincc_proj/DevEnv3.21"
},
{
"name": "runnable",
"path": "out/test/fixtures/projects/runnable"
},
{
"path": "../../repos/simaris-control"
},
{
"name": "sub-proj",
"path": "src/test/fixtures/projects/sub-proj"
}
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.background": "#1F3D29",
"titleBar.activeBackground": "#2B5538",
"titleBar.activeForeground": "#FAFCFB",
"titleBar.inactiveBackground": "#1A3322",
"titleBar.inactiveForeground": "#F8FCF9",
"statusBar.background": "#1A3322",
"statusBar.foreground": "#F8FCF9",
"statusBar.debuggingBackground": "#1A3322",
"statusBar.debuggingForeground": "#F8FCF9",
"statusBar.noFolderBackground": "#1A3322",
"statusBar.noFolderForeground": "#F8FCF9"
},
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/out": true,
"**/bin": true
},
"winccoaLogviewer.autoClearOnScriptExecution": false
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "winccoa",
"request": "attach",
"name": "WinCC OA: Attach to CTRL 1",
"host": "localhost",
"port": 4999,
"manager": {
"type": "CTRL",
"number": 1
},
"pathMappings": {
"/home/testus/wincc_proj/DevEnv3.21/scripts": "${workspaceFolder:DevEnv3.21}/scripts"
}
}
]
}
}