Add Visual Studio Code metadata

This commit is contained in:
Matthias Mailänder 2022-07-23 14:21:53 +02:00 committed by abcdefg30
parent 2b68288abb
commit e0c1ee07e4
3 changed files with 43 additions and 0 deletions

9
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"recommendations": [
"ms-dotnettools.csharp",
"openra.oraide-vscode",
"openra.vscode-openra-lua",
"EditorConfig.EditorConfig",
"macabeus.vscode-fluent",
]
}

21
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Mod SDK Example",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/engine/bin/OpenRA.dll",
"windows": {
"program": "${workspaceRoot}/engine/bin/OpenRA.exe",
},
"args": [
"Engine.EngineDir=${workspaceRoot}/engine",
"Engine.ModSearchPaths=${workspaceRoot}/mods",
"Game.Mod=example",
"Debug.DisplayDeveloperSettings=true",
]
},
]
}

13
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "make",
"args": ["all"],
"windows": {
"command": "make.cmd"
}
}
]
}