-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunchForNET48.json
More file actions
89 lines (89 loc) · 3.42 KB
/
launchForNET48.json
File metadata and controls
89 lines (89 loc) · 3.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"version": "0.2.0",
"configurations": [
{
"name": "CORE Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build Solution",
"program": "${workspaceFolder}bin/Debug/gip.iplus.client.exe",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "DNSPY Launch",
"type": "node-terminal",
"request": "launch",
"command": "${workspaceFolder}/../wine_debug_dnspy.sh \"${workspaceFolder}/bin/Debug/gip.iplus.client.exe\"",
"cwd": "${workspaceFolder}"
}
/*{
"name": "CLR Launch iPlus (.NET Framework)",
"type": "clr",
"request": "launch",
"preLaunchTask": "Build Solution",
"program": "${workspaceFolder}\\bin\\Debug\\gip.iplus.client.exe",
"args": [],
"cwd": "${workspaceFolder}\\bin\\Debug",
"stopAtEntry": true,
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
"logging": {
"engineLogging": true,
"trace": true,
"moduleLoad": true
}
},
{
"name": "Attach to iPlus (Wine)",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555 // Or the port your app is listening on
},
{
"justMyCode": false,
"symbolOptions": {
"searchPaths": [],
"searchMicrosoftSymbolServer": false
},
"enableStepFiltering": false,
"name": "CLR Bridge launch",
"type": "clr",
"request": "launch",
"program": "D:\\Devel\\iPlusGit\\V4\\iPlus\\bin\\Debug\\gip.iplus.client.exe", // Windows path inside Wine
"cwd": "D:\\Devel\\iPlusGit\\V4\\iPlus\\bin\\Debug",
"pipeTransport": {
"pipeProgram": "${workspaceFolder}/../wine_debug_vscode.sh",
"pipeArgs": [],
"debuggerPath": "C:\\users\\damir\\.vscode\\extensions\\ms-dotnettools.csharp-1.24.4-win32-x64\\.debugger\\vsdbg.exe",
"pipeCwd": "${workspaceFolder}",
"quoteArgs": true
},
"logging": {
"engineLogging": true
}
},
{
"name": "MONO Launch iPlus (.NET Framework)",
"type": "mono",
"request": "launch",
"preLaunchTask": "Build Solution",
"program": "${workspaceFolder}/bin/Debug/gip.iplus.client.exe",
//"program": "D:\\Devel\\iPlusGit\\V4\\iPlus\\bin\\Debug\\gip.iplus.client.exe",
"args": [],
"cwd": "${workspaceFolder}",
"runtimeExecutable": "C:\\Program Files\\Mono\\bin\\mono.exe",
//"stopAtEntry": false,
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
//"env": {
//"WINEPREFIX": "$HOME/.wine-dotnet48-64",
//"PATH": "C:\\Program Files\\Mono\\bin;%PATH%"
//}
},*/
]
}