sdbd-demo.git

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

commit
d4cdae8
parent
6a65da2
author
CheddarCrisp
date
2024-01-10 03:00:17 +0100 CET
More project settings
2 files changed,  +33, -2
A .vscode/launch.json
+30, -0
 1@@ -0,0 +1,30 @@
 2+{
 3+  // Use IntelliSense to learn about possible attributes.
 4+  // Hover to view descriptions of existing attributes.
 5+  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
 6+  "version": "0.2.0",
 7+  "configurations": [
 8+    {
 9+      "name": "SDBD Demo decode",
10+      "type": "coreclr",
11+      "request": "launch",
12+      "preLaunchTask": "build",
13+      "program": "${workspaceFolder}/SDBD.Demo/bin/Debug/net8.0/SDBD.Demo.dll",
14+      "args": ["-d", "test.txt.sdbd"],
15+      "cwd": "${workspaceFolder}",
16+      "stopAtEntry": false,
17+      "console": "internalConsole"
18+    },
19+    {
20+      "name": "SDBD Demo encode",
21+      "type": "coreclr",
22+      "request": "launch",
23+      "preLaunchTask": "build",
24+      "program": "${workspaceFolder}/SDBD.Demo/bin/Debug/net8.0/SDBD.Demo.dll",
25+      "args": ["test.txt"],
26+      "cwd": "${workspaceFolder}",
27+      "stopAtEntry": false,
28+      "console": "internalConsole"
29+    }
30+  ]
31+}
M .vscode/settings.json
+3, -2
1@@ -1,4 +1,5 @@
2 {
3     "editor.tabSize": 2,
4-    "files.insertFinalNewline": true
5-}
6+    "files.insertFinalNewline": true,
7+    "files.trimTrailingWhitespace": true
8+}