WebServer controller changes along with JSON settings

This commit is contained in:
2025-04-07 15:41:19 -04:00
parent f39d50af89
commit a7627e3f22
8 changed files with 40 additions and 96 deletions

14
.vscode/launch.json vendored
View File

@@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"name": ".NET Core Launch (mk)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
@@ -16,9 +16,15 @@
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"name": ".NET Core Launch (mks)",
"type": "coreclr",
"request": "attach"
}
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/MarketDataServer/bin/Debug/net8.0/mks.dll",
"args": [],
"cwd": "${workspaceFolder}/MarketDataServer",
"console": "internalConsole",
"stopAtEntry": false
}
]
}