From 3bbfac90813ed732f35df89871eb0178401a1291 Mon Sep 17 00:00:00 2001 From: penev92 Date: Tue, 21 Mar 2023 17:43:36 +0200 Subject: [PATCH] Added a VS launch profile for the Utility as well --- OpenRA.Mods.Example/Properties/launchSettings.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/OpenRA.Mods.Example/Properties/launchSettings.json b/OpenRA.Mods.Example/Properties/launchSettings.json index 5b6bd42..0049266 100644 --- a/OpenRA.Mods.Example/Properties/launchSettings.json +++ b/OpenRA.Mods.Example/Properties/launchSettings.json @@ -4,6 +4,15 @@ "commandName": "Executable", "executablePath": "..\\..\\engine\\bin\\OpenRA.exe", "commandLineArgs": "Game.Mod=example Engine.EngineDir=..\\..\\engine Engine.LaunchPath=..\\..\\engine\\bin Engine.ModSearchPaths=..\\..\\mods,..\\..\\engine\\mods Debug.DisplayDeveloperSettings=true" + }, + "Utility": { + "commandName": "Executable", + "executablePath": "..\\..\\engine\\bin\\OpenRA.Utility.exe", + "commandLineArgs": "example --check-yaml", + "environmentVariables": { + "ENGINE_DIR": "..\\..\\engine", + "MOD_SEARCH_PATHS": "..\\..\\mods,..\\..\\engine\\mods" + } } } }