From 9a30d260a179d207bf9ae5a800f6f594c4fe72b7 Mon Sep 17 00:00:00 2001 From: penev92 Date: Tue, 26 Apr 2022 11:55:44 +0300 Subject: [PATCH] Added launch profiles for the Utility project --- .vscode/launch.json | 14 ++++++++++++++ OpenRA.Utility/Properties/launchSettings.json | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 OpenRA.Utility/Properties/launchSettings.json diff --git a/.vscode/launch.json b/.vscode/launch.json index db96daaf40..37a5db10e7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -45,5 +45,19 @@ "args": ["Game.Mod=ts", "Engine.EngineDir=.."], "preLaunchTask": "build", }, + { + "name": "Launch Utility", + "type": "coreclr", + "request": "launch", + "program": "${workspaceRoot}/bin/OpenRA.Utility.dll", + "windows": { + "program": "${workspaceRoot}/bin/OpenRA.Utility.exe", + }, + "args": ["all", "--docs", "{DEV_VERSION}"], + "env": { + "ENGINE_DIR": ".." + }, + "preLaunchTask": "build", + }, ] } diff --git a/OpenRA.Utility/Properties/launchSettings.json b/OpenRA.Utility/Properties/launchSettings.json new file mode 100644 index 0000000000..33fc79161f --- /dev/null +++ b/OpenRA.Utility/Properties/launchSettings.json @@ -0,0 +1,11 @@ +{ + "profiles": { + "OpenRA.Utility": { + "commandName": "Project", + "commandLineArgs": "all --docs {DEV_VERSION}", + "environmentVariables": { + "ENGINE_DIR": ".." + } + } + } +}