From 48cf2b80cade179c7710f0b383248a63c6b8ce35 Mon Sep 17 00:00:00 2001 From: Harrison Date: Sun, 23 Feb 2020 16:21:20 -0500 Subject: [PATCH] VSCode launch stuff. --- RecrownedGTK.Tools.Tests/.vscode/launch.json | 27 +++++++++++++ RecrownedGTK.Tools.Tests/.vscode/tasks.json | 42 ++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 RecrownedGTK.Tools.Tests/.vscode/launch.json create mode 100644 RecrownedGTK.Tools.Tests/.vscode/tasks.json diff --git a/RecrownedGTK.Tools.Tests/.vscode/launch.json b/RecrownedGTK.Tools.Tests/.vscode/launch.json new file mode 100644 index 0000000..1074ace --- /dev/null +++ b/RecrownedGTK.Tools.Tests/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // 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 + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/RecrownedGTK.Tools.Tests.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", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file diff --git a/RecrownedGTK.Tools.Tests/.vscode/tasks.json b/RecrownedGTK.Tools.Tests/.vscode/tasks.json new file mode 100644 index 0000000..b832770 --- /dev/null +++ b/RecrownedGTK.Tools.Tests/.vscode/tasks.json @@ -0,0 +1,42 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/RecrownedGTK.Tools.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/RecrownedGTK.Tools.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/RecrownedGTK.Tools.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file