Error trying to publish my web application from VS Enterprise 2015 1 to azure update:

Yesterday, when I published this webapp, he said that a new webapp was created, although there is nothing to display. Thus, as necessary, I installed updates to the Azure SDK, etc., as recommended by the software, that is, VS 15 Enterprise Edition. Today, when I right-click on a web application and select Publish, I see the following error on the Azure App Service Activity tab:

------ Build started: Project: BPIT - Publish, Configuration: Debug Any CPU ------ ------ Publish started: Project: BPIT - Publish, Configuration: Debug Any CPU ------ Can't find existing loaded project:http://localhost:6002 ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ========== ========== Publish: 0 succeeded, 1 failed, 0 skipped ========== Check this for more information. http://bpitanshika.azurewebsites.net/ 
+5
source share
1 answer

I had the same error as publishing ASP.Net websites (not web applications) for Azure. Here's how to fix it:

  • In Visual Studio, click View - Other Windows Actions - Publish to the Internet
  • This will open the Azure App activity window.
  • Click the publish icon

https://blogs.msdn.microsoft.com/acoat/2016/01/28/publish-a-static-web-site-using-azure-web-apps/

+4
source

Source: https://habr.com/ru/post/1242027/


All Articles