More project settings

This commit is contained in:
CheddarCrisp 2024-01-09 21:00:17 -05:00
parent 6a65da2e12
commit d4cdae8c6e
2 changed files with 33 additions and 2 deletions

30
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,30 @@
{
// 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"
}
]
}

View file

@ -1,4 +1,5 @@
{
"editor.tabSize": 2,
"files.insertFinalNewline": true
}
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
}