Skip to content

Commit

Permalink
Allow use of persistent binaries via vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
X9VoiD committed Dec 26, 2022
1 parent 822f1da commit 78f4273
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,36 @@
"cwd": "${workspaceFolder}/OpenTabletDriver.UX.MacOS/bin/Debug/net7.0/OpenTabletDriver.UX.MacOS.app/Contents/MacOS/",
"program": "${workspaceFolder}/OpenTabletDriver.UX.MacOS/bin/Debug/net7.0/OpenTabletDriver.UX.MacOS.app/Contents/MacOS/OpenTabletDriver.UX.MacOS.dll",
}
},
{
"name": "Daemon (Persistent)",
"type": "coreclr",
"request": "launch",
"cwd": "${workspaceFolder}/bin",
"windows": {
"program": "${workspaceFolder}/bin/OpenTabletDriver.Daemon.exe",
},
"linux": {
"program": "${workspaceFolder}/bin/OpenTabletDriver.Daemon",
},
"args": [],
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": "UX (Persistent)",
"type": "coreclr",
"request": "launch",
"cwd": "${workspaceFolder}/bin",
"windows": {
"program": "${workspaceFolder}/bin/OpenTabletDriver.UX.Wpf.exe",
},
"linux": {
"program": "${workspaceFolder}/bin/OpenTabletDriver.UX.Gtk",
},
"args": [],
"console": "internalConsole",
"stopAtEntry": false
}
]
}
14 changes: 13 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,18 @@
"/consoleloggerparameters:NoSummary"
]
}
}
},
{
"label": "Build Persistent Binaries",
"type": "process",
"isBuildCommand": true,
"windows": {
"command": "./build.ps1"
},
"linux": {
"command": "./build.sh"
},
"problemMatcher": "$msCompile"
},
]
}

0 comments on commit 78f4273

Please sign in to comment.