Add ability to suppress notificiations IPMonitor

This commit is contained in:
2025-04-27 09:20:30 -04:00
parent 7ed8650cc1
commit cebf9f63e6
5 changed files with 34 additions and 32 deletions

14
.vscode/launch.json vendored
View File

@@ -25,6 +25,18 @@
"cwd": "${workspaceFolder}/MarketDataServer",
"console": "internalConsole",
"stopAtEntry": false
}
},
{
"name": ".NET Core Launch (ipmonitor)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/IPMonitor/bin/Debug/net8.0/ipmonitor.dll",
"args": ["IPMONITOR","/FORCE:true"],
"cwd": "${workspaceFolder}/IPMonitor",
"console": "internalConsole",
"stopAtEntry": false
},
]
}