{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "SDBD Demo decode", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/SDBD.Demo/bin/Debug/net8.0/SDBD.Demo.dll", "args": ["-d", "test.txt.sdbd"], "cwd": "${workspaceFolder}", "stopAtEntry": false, "console": "internalConsole" }, { "name": "SDBD Demo encode", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/SDBD.Demo/bin/Debug/net8.0/SDBD.Demo.dll", "args": ["test.txt"], "cwd": "${workspaceFolder}", "stopAtEntry": false, "console": "internalConsole" } ] }