From 2f317d53481ceceb83a8defb5c6d7121d0c80688 Mon Sep 17 00:00:00 2001 From: iertis Date: Fri, 19 Dec 2025 12:59:16 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BE=D1=87=D0=BA=D0=B0?= =?UTF-8?q?=20=D0=B7=D0=B0=D0=BF=D1=83=D1=81=D0=BA=D0=B0=20=D1=80=D0=B5?= =?UTF-8?q?=D0=BB=D0=B8=D0=B7=D0=B0=20=D0=B2=20=D0=B8=D0=BD=D1=82=D0=B5?= =?UTF-8?q?=D1=80=D1=84=D0=B5=D0=B9=D1=81=20=D0=92=D0=A1=20=D0=BA=D0=BE?= =?UTF-8?q?=D0=B4=D0=B0=20(#3474)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 32 ++++++++++++++++++++++++++++++-- .vscode/tasks.json | 22 +++++++++++++++++++++- 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5390b91409..b5f1cefe96 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -40,7 +40,27 @@ "cwd": "${workspaceFolder}/Content.YAMLLinter", "console": "internalConsole", "stopAtEntry": false - } + }, + { + "name": "Server - Release", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build - Release", + "program": "${workspaceFolder}/bin/Content.Server/Content.Server.dll", + "args": [""], + "console": "integratedTerminal", + "stopAtEntry": false + }, + { + "name": "Client - Release", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build - Release", + "program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll", + "args": [], + "console": "internalConsole", + "stopAtEntry": false + }, ], "compounds": [ { @@ -50,6 +70,14 @@ "Client" ], "preLaunchTask": "build" + }, + { + "name": "Server/Client - Release", + "configurations": [ + "Server - Release", + "Client - Release" + ], + "preLaunchTask": "build - Release" } ] -} \ No newline at end of file +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7f4efc8c9a..93ef8163cc 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -76,6 +76,26 @@ "reveal": "silent" }, "problemMatcher": "$msCompile" - } + }, + { + "label": "build - Release", + "command": "dotnet", + "type": "shell", + "args": [ + "build", + "--configuration", + "Release", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:'ForceNoAlign;NoSummary'", + ], + "group": { + "kind": "build", + "isDefault": false + }, + "presentation": { + "reveal": "silent" + }, + "problemMatcher": "$msCompile" + }, ] }