I'm trying to host an existing VSCode extension, that talks to an IoT device inside VS2019 or VS for Mac and I'm getting the error mentioned in the subject line.
The VSCode extension is able to set breakpoints and debug apps running on the device (a Meadow F7 Micro) if I run it from VS Code itself, but when I run the test mentioned on your wiki, in VS2019, the error above appears.
Now on Windows the IoT device is connected via USB and appears on COM5. So I'm assuming that I should have
"$debugServer": "COM5",
in my launch.json? Is that correct?
What else is required for this scenario to work?
My full launch.json looks like this...
`{
"$debugServer": "COM5",
"$adapter": "C:\[Path to VS Code exe]\vscode-meadow.exe",
"type": "App",
"request": "launch",
"program": "C:\\[Path to Source File]\\MeadowApp.cs"
}`