sdbd-demo.git

git clone https://git.crispbyte.dev/sdbd-demo.git

sdbd-demo.git / .vscode
CheddarCrisp  ·  2024-01-10

launch.json

 1{
 2  // Use IntelliSense to learn about possible attributes.
 3  // Hover to view descriptions of existing attributes.
 4  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
 5  "version": "0.2.0",
 6  "configurations": [
 7    {
 8      "name": "SDBD Demo decode",
 9      "type": "coreclr",
10      "request": "launch",
11      "preLaunchTask": "build",
12      "program": "${workspaceFolder}/SDBD.Demo/bin/Debug/net8.0/SDBD.Demo.dll",
13      "args": ["-d", "test.txt.sdbd"],
14      "cwd": "${workspaceFolder}",
15      "stopAtEntry": false,
16      "console": "internalConsole"
17    },
18    {
19      "name": "SDBD Demo encode",
20      "type": "coreclr",
21      "request": "launch",
22      "preLaunchTask": "build",
23      "program": "${workspaceFolder}/SDBD.Demo/bin/Debug/net8.0/SDBD.Demo.dll",
24      "args": ["test.txt"],
25      "cwd": "${workspaceFolder}",
26      "stopAtEntry": false,
27      "console": "internalConsole"
28    }
29  ]
30}