-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1177047
commit 26f13bc
Showing
12 changed files
with
905 additions
and
106 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"EditorConfig.EditorConfig", | ||
"ms-dotnettools.csharp", | ||
"openra.oraide-vscode", | ||
"openra.vscode-openra-lua", | ||
"macabeus.vscode-fluent", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch (Example)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/engine/bin/OpenRA.dll", | ||
"args": [ | ||
"Game.Mod=example", | ||
"Engine.EngineDir=${workspaceRoot}/engine", | ||
"Engine.ModSearchPaths=${workspaceRoot}/mods, ${workspaceRoot}/engine/mods", | ||
"Debug.DisplayDeveloperSettings=true", | ||
], | ||
"preLaunchTask": "build", | ||
}, | ||
{ | ||
"name": "Launch Utility", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/engine/bin/OpenRA.Utility.dll", | ||
"args": ["example", "--check-yaml"], | ||
"env": { | ||
"ENGINE_DIR": "${workspaceRoot}/engine", | ||
"MOD_SEARCH_PATHS": "${workspaceRoot}/mods, ${workspaceRoot}/engine/mods" | ||
}, | ||
"preLaunchTask": "build", | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"command": "make", | ||
"args": ["all", "CONFIGURATION=Debug"], | ||
"windows": { | ||
"command": "make.cmd" | ||
} | ||
}, | ||
{ | ||
"label": "Run Utility", | ||
"command": "dotnet ${workspaceRoot}/engine/bin/OpenRA.Utility.dll ${input:modId} ${input:command}", | ||
"type": "shell", | ||
"options": { | ||
"env": { | ||
"ENGINE_DIR": "${workspaceRoot}/engine", | ||
"MOD_SEARCH_PATHS": "${workspaceRoot}/mods,${workspaceRoot}/engine/mods" | ||
} | ||
} | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "modId", | ||
"description": "ID of the mod to run", | ||
"default": "all", | ||
"type": "promptString" | ||
}, { | ||
"id": "command", | ||
"description": "Name of the command + parameters", | ||
"default": "", | ||
"type": "promptString" | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters