Add support for Visual Studio Code.
This commit is contained in:
committed by
Pavel Penev
parent
cada396733
commit
7261322e41
7
.vscode/extensions.json
vendored
Normal file
7
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"ms-dotnettools.csharp",
|
||||||
|
"EditorConfig.EditorConfig",
|
||||||
|
"ms-vscode.mono-debug"
|
||||||
|
]
|
||||||
|
}
|
||||||
61
.vscode/launch.json
vendored
Normal file
61
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Launch (TD)",
|
||||||
|
"type": "clr",
|
||||||
|
"linux": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"osx": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/OpenRA.Game.exe",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"args": ["Game.Mod=cnc"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Launch (RA)",
|
||||||
|
"type": "clr",
|
||||||
|
"linux": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"osx": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/OpenRA.Game.exe",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"args": ["Game.Mod=ra"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Launch (D2k)",
|
||||||
|
"type": "clr",
|
||||||
|
"linux": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"osx": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/OpenRA.Game.exe",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"args": ["Game.Mod=d2k"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Launch (TS)",
|
||||||
|
"type": "clr",
|
||||||
|
"linux": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"osx": {
|
||||||
|
"type": "mono"
|
||||||
|
},
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/OpenRA.Game.exe",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"args": ["Game.Mod=ts"]
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"omnisharp.enableRoslynAnalyzers": 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user