Unable to publish the artifact for .NET Core, I can able to build but can't publish on Azure Devops.
Front code : Angular, Back end : dotnet 6, Sql : MSsql Server
Unable to publish the artifact for .NET Core, I can able to build but can't publish on Azure Devops.
Front code : Angular, Back end : dotnet 6, Sql : MSsql Server
Given that your project could be restored correctly, I suppose that you could add a --no-restore
to your dotnet publish
argument and test again.
Updated on 1/2
======================================================
I suppose there are multiple possible caused for your current issue of https 500.30
. You could visit this doc to troubleshoot.
Additionally,
1.Check your hosting model. Confirm that whether it's IN Of Process or Out of Process. You can check the configuration in you csproj file. if you using In of Process, try to change it to
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
2.If you are deploying win-x64
app and try to have it published using an Application Pool that supports 32-bit
apps, you will need to make them match-up.
3.Check in portal.azure.com for your web-app whether it is running correctly.
4.Go to portal.azure.com check you app console, and try to manually start your project with dotnet ServerApp.dll
.
==========================================================
Updated on 1/9
Hi devendar
Check this doc Bad Gateway errors in Application Gateway for further troubleshoot.