diff --git a/.vscode/launch.json b/.vscode/launch.json index c619417..38b8c2f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,25 +2,15 @@ "version": "0.2.0", "configurations": [ { - // Use IntelliSense to find out which attributes exist for C# debugging - // Use hover for the description of the existing attributes - // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md - "name": ".NET Core Launch (console)", + "name": "SteamAuth", "type": "coreclr", "request": "launch", - "preLaunchTask": "build", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/bin/Debug/net7.0-windows/steam-auth.dll", + "preLaunchTask": "build-SteamAuth", + "program": "${workspaceFolder}/SteamAuth.csproj/bin/Debug/net7.0/SteamAuth.dll", "args": [], - "cwd": "${workspaceFolder}", - // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console - "console": "internalConsole", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" + "cwd": "${workspaceFolder}/SteamAuth.csproj", + "stopAtEntry": false, + "console": "internalConsole" } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 58236a0..8964114 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,40 +2,16 @@ "version": "2.0.0", "tasks": [ { - "label": "build", + "label": "build-SteamAuth", "command": "dotnet", "type": "process", "args": [ "build", - "${workspaceFolder}/steam-auth.csproj", + "${workspaceFolder}/SteamAuth.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/steam-auth.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "--project", - "${workspaceFolder}/steam-auth.csproj" - ], - "problemMatcher": "$msCompile" } ] } \ No newline at end of file