Essentially, I have an ASP.NET Core 1.0 (rc1-final) application that I published in the Azure App Service, and run into an error that only appears there, and itβs not clear from the logs what causes it.
Therefore, I tried to use the remote debugging capabilities of Visual Studio 2015 (Update 1) and Cloud Explorer to debug the application. Debugging begins, but breakpoints do not fall because debugging symbols do not load.
I tried both release and debug builds to no avail. The dnx web project is compiled with the option "Build output" (which packs the project into a nuget package), so xmldoc is created and published with it (note: I use Swashbuckle for documentation of SwaggerGen for Rest API and xmldocs is required for additional documentation )
I found several articles on the old nuget package creation path and the -symbol parameter, but I did not find a way to generate or pass the parameter to the dnx / dnu build process and publish it to the server.
The application is now published using the Azure Publishing toolkit in Visual Studio 2015 Update 1.
Has anyone got a working solution on how to remotely debug (preferably a compiled version) ASP.NET Core 1.0 web application in Azure App Service?
source share