The tasks.json is pointing to a not existing server.csproj. Wonder if you could update the starter with a launch.json and tasks.json so developer can debug client and server code with VS Code... is this possible as is it right now ? (or alternative instructions)
{
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/server.csproj"
],
"problemMatcher": "$msCompile"
}
]
}