Add Visual Studio Code metadata
This commit is contained in:
parent
2b68288abb
commit
e0c1ee07e4
9
.vscode/extensions.json
vendored
Normal file
9
.vscode/extensions.json
vendored
Normal 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
21
.vscode/launch.json
vendored
Normal 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
13
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "build",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["all"],
|
||||||
|
"windows": {
|
||||||
|
"command": "make.cmd"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user