I've been trying to get an ASP.NET Core web api to work with Azure remote debugging. So far no luck. I've tried Server Explorer, right-click on my App Service and say Attach to Debugger. I can tell it configured everything because it turned on my debugging and set right VS version etc. It just won't take my breakpoint.
I also tried manually attaching by putting my website.azurewebsites.net into the Qualifier but it fails with error: "remote server name is not valid". I know the app works because I can hit one of the REST endpoints, but I can't debug the app at all.
I tried the ideas in this helpful stackoverflow article as well: Attach debugger not working for Azure Websites in visual studio 2015 But it didn't work.
Finally, I tried a brand new ASP.NET 4.5 project (not core) and it seems the debugging is working for the most part. Are .NET Core apps able to be debugged in App Service?
Any ideas?
James