feat: work on setting up database

This commit is contained in:
Stevan Freeborn
2024-08-18 20:16:38 -05:00
parent f9e6e54db6
commit 3c809de5dc
19 changed files with 745 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Worker",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/SanctionsSearch.Worker/bin/Debug/net8.0/SanctionsSearch.Worker.dll",
"args": [],
"cwd": "${workspaceFolder}/src/SanctionsSearch.Worker",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
+5 -1
View File
@@ -1,5 +1,9 @@
{
"editor.formatOnSave": true,
"dotnet.defaultSolution": "src/SanctionsSearch.sln",
"cSpell.words": ["OFAC", "Szalay"]
"cSpell.words": [
"OFAC",
"Sdns",
"Szalay"
]
}
+41
View File
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/SanctionsSearch.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/SanctionsSearch.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/src/SanctionsSearch.sln"
],
"problemMatcher": "$msCompile"
}
]
}