feat: Refactor database access to use parameterized queries and improve error handling; update launch settings and add VSCode configuration files

This commit is contained in:
jim
2025-11-21 16:26:33 -06:00
parent 81e345b36f
commit 2640854f79
9 changed files with 216 additions and 75 deletions
+3 -1
View File
@@ -5,7 +5,9 @@
"version": "0.2.0",
"configurations": [
{
"args": ["-pn"], // <--- ADD OR MODIFY THIS LINE
"args": [
"-pn"
], // <--- ADD OR MODIFY THIS LINE
}
]
}
+3
View File
@@ -0,0 +1,3 @@
{
"dotnet.defaultSolution": "URLNotesGrabberCORE/URLNotesGrabberCORE.sln"
}
+41
View File
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/URLNotesGrabberCORE.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/URLNotesGrabberCORE.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/URLNotesGrabberCORE.sln"
],
"problemMatcher": "$msCompile"
}
]
}