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",