I have a visual studio solution with 2 projects in it. Both are web API's (not .net core). When I had one project I could debug it by hitting
http://localhost:53961/api/...
However I then added the 2nd project. How can I start debugging the second one? It doesn't seem to hit the breakpoint. I get
No HTTP resource was found that matches the request URI
When I put a breakpoint on the main method
// GET: api/<controller>
[HttpGet]
public async Task<Result> Get(string emails)
{
}
I see a message:
The breakpoint will currently not be hit. No code has been loaded for this code location.