From 96cba48f04b1ad0b2b4b6e9474582aaa0eec3fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Fri, 4 Feb 2022 00:48:30 +0100 Subject: [PATCH] GUI build. launch --- .vscode/launch.json | 11 +++++++++++ .vscode/tasks.json | 12 ++++++++++++ 2 files changed, 23 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 010aabd..f495977 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,6 +15,17 @@ "console": "internalConsole", "stopAtEntry": false }, + { + "name": "GUI", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build gui", + "program": "${workspaceFolder}/src/GuiApp/FileTime.Avalonia/bin/Debug/net6.0/FileTime.Avalonia.dll", + "args": [], + "cwd": "${workspaceFolder}/src/GuiApp/FileTime.Avalonia/bin/Debug/net6.0", + "console": "internalConsole", + "stopAtEntry": false + }, { "name": ".NET Core Attach", "type": "coreclr", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b17530d..ed42e5b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -13,6 +13,18 @@ ], "problemMatcher": "$msCompile" }, + { + "label": "build gui", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/src/GuiApp/FileTime.Avalonia/FileTime.Avalonia.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, { "label": "publish cli", "command": "dotnet",