From c72b0468fc87a0fa2f60c82ae1d82e4d66c07e7e Mon Sep 17 00:00:00 2001 From: penev92 Date: Tue, 21 Mar 2023 15:14:19 +0200 Subject: [PATCH] Added launchSettings.json for launching via VS --- OpenRA.Mods.Example/Properties/launchSettings.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 OpenRA.Mods.Example/Properties/launchSettings.json diff --git a/OpenRA.Mods.Example/Properties/launchSettings.json b/OpenRA.Mods.Example/Properties/launchSettings.json new file mode 100644 index 0000000..5b6bd42 --- /dev/null +++ b/OpenRA.Mods.Example/Properties/launchSettings.json @@ -0,0 +1,9 @@ +{ + "profiles": { + "OpenRA.Mods.Example": { + "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" + } + } +}