Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 60 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,28 @@
"console": "internalConsole",
"stopAtEntry": false
},
//# ADT-UPD-Start
{
"name": "Client (Release)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build (Release)",
"program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll",
"args": [],
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": "Client (DebugOpt)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build (DebugOpt)",
"program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll",
"args": [],
"console": "internalConsole",
"stopAtEntry": false
},
//# ADT-UPD-End
{
"name": "Server",
"type": "coreclr",
Expand All @@ -56,7 +78,27 @@
"console": "internalConsole",
"stopAtEntry": false
},
//# ADT-UPD-End
{
"name": "Server (Release)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build (Release)",
"program": "${workspaceFolder}/bin/Content.Server/Content.Server.dll",
"args": [],
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Server (DebugOpt)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build (DebugOpt)",
"program": "${workspaceFolder}/bin/Content.Server/Content.Server.dll",
"args": [],
"console": "internalConsole",
"stopAtEntry": false
},
//# ADT-UPD-End 03032026-ToolsBuilder
{
"name": "YAML Linter",
"type": "coreclr",
Expand Down Expand Up @@ -85,7 +127,23 @@
"Client (Tools)"
],
"preLaunchTask": "build (Tools)"
},
{
"name": "Server/Client (Release)",
"configurations": [
"Server (Release)",
"Client (Release)"
],
"preLaunchTask": "build (Release)"
},
{
"name": "Server/Client (DebugOpt)",
"configurations": [
"Server (DebugOpt)",
"Client (DebugOpt)"
],
"preLaunchTask": "build (DebugOpt)"
}
//# ADT-UPD-End
//# ADT-UPD-End 03032026-ToolsBuilder
]
}
42 changes: 41 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,47 @@
},
"problemMatcher": "$msCompile"
},
//# ADT-UPD-End
{
"label": "build (Release)",
"command": "dotnet",
"type": "shell",
"args": [
"build",
"--configuration",
"Release",
"/property:GenerateFullPaths=true", // Ask dotnet build to generate full paths for file names.
"/consoleloggerparameters:NoSummary" // Do not generate summary otherwise it leads to duplicate errors in Problems panel
],
"group": {
"kind": "build",
"isDefault": false
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
},
{
"label": "build (DebugOpt)",
"command": "dotnet",
"type": "shell",
"args": [
"build",
"--configuration",
"DebugOpt",
"/property:GenerateFullPaths=true", // Ask dotnet build to generate full paths for file names.
"/consoleloggerparameters:NoSummary" // Do not generate summary otherwise it leads to duplicate errors in Problems panel
],
"group": {
"kind": "build",
"isDefault": false
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
},
//# ADT-UPD-End 03032026-ToolsBuilder
{
"label": "build-yaml-linter",
"command": "dotnet",
Expand Down
Loading