From a893ccd646123e0019381a186ea50977600011fa Mon Sep 17 00:00:00 2001 From: Lemon73-Computing Date: Thu, 25 Apr 2024 00:58:50 +0900 Subject: [PATCH] fix: debug workflows --- .vscode/launch.json | 4 ++-- .vscode/tasks.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index ff9df19..cec3459 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,9 +10,9 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceRoot}/ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll", + "program": "${workspaceRoot}/src/ElectronNET.CLI/bin/Debug/net8.0/dotnet-electronize.dll", "args": [], - "cwd": "${workspaceRoot}/ElectronNET.CLI", + "cwd": "${workspaceRoot}/src/ElectronNET.CLI", // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window "console": "internalConsole", "stopAtEntry": false, diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fb72f4e..03554c8 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,7 +7,7 @@ "label": "build", "type": "shell", "command": "dotnet", - "args": ["build", "${workspaceRoot}/ElectronNET.CLI/ElectronNET.CLI.csproj"], + "args": ["build", "${workspaceRoot}/src/ElectronNET.CLI/ElectronNET.CLI.csproj"], "problemMatcher": "$msCompile", "group": { "_id": "build",