Added launch profiles for the Utility project

This commit is contained in:
penev92
2022-04-26 11:55:44 +03:00
committed by atlimit8
parent 581b5cfacf
commit 9a30d260a1
2 changed files with 25 additions and 0 deletions

14
.vscode/launch.json vendored
View File

@@ -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",
},
]
}

View File

@@ -0,0 +1,11 @@
{
"profiles": {
"OpenRA.Utility": {
"commandName": "Project",
"commandLineArgs": "all --docs {DEV_VERSION}",
"environmentVariables": {
"ENGINE_DIR": ".."
}
}
}
}