diff --git a/.vscode/launch.json b/.vscode/launch.json index 10a16116..e2d660af 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "version": "0.2.0", "configurations": [ { - "name": ".NET Core Launch (console)", + "name": ".NET Core Launch (Check)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", @@ -18,6 +18,20 @@ "stopAtEntry": false, "justMyCode": false }, + { + "name": ".NET Core Launch (CLI)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/MPF.CLI/bin/Debug/net9.0/MPF.CLI.dll", + "args": [], + "cwd": "${workspaceFolder}/MPF.CLI", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false, + "justMyCode": false + }, { "name": ".NET Core Attach", "type": "coreclr", diff --git a/CHANGELIST.md b/CHANGELIST.md index d3082b2b..2857543b 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -63,6 +63,7 @@ - Remove unused gated using statement - Add alternate config location - Add safety check around empty config files +- Add launch config for CLI ### 3.2.4 (2024-11-24)