From 8be3c2202cd663e5a58f66d3bf8ddf03f77c0984 Mon Sep 17 00:00:00 2001 From: Ben C Date: Thu, 30 Nov 2023 11:38:12 -0500 Subject: [PATCH] Add run-game VSC launch config --- .../parent-stuff/.vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/Outer-Wilds-Mod-Template/parent-stuff/.vscode/launch.json diff --git a/templates/Outer-Wilds-Mod-Template/parent-stuff/.vscode/launch.json b/templates/Outer-Wilds-Mod-Template/parent-stuff/.vscode/launch.json new file mode 100644 index 0000000..803a7d1 --- /dev/null +++ b/templates/Outer-Wilds-Mod-Template/parent-stuff/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "configurations": [ + { + "windows": { + "command": "dotnet build && start owmods://run-game/$username$.$safeprojectname$" + }, + "linux": { + "command": "dotnet build && xdg-open owmods://run-game/$username$.$safeprojectname$" + }, + "name": "Run Game", + "request": "launch", + "type": "node-terminal" + } + ] +}