Reputation: 377
I'm trying to publish an .NET Core 3.0 web app to the Azure cloud but apparently, version 3.0 is not supported yet. I've tried several things but nothing seems to be working. Can anyone help, please?
...
now I'm getting this error:
Update:
I see this is the log, btw.:
Upvotes: 0
Views: 2323
Reputation: 5559
You can just create a web app with .net core 2.x version. And then use Azure web app extension to install .net core 3.0 runtime environment:
The tutorial: https://microsoft.github.io/AzureTipsAndTricks/blog/tip21.html
Update:
From the kudu advanced tools, I see that the azure web app already has supported .net core 3.0.
And I can successfully deploy my .net core 3.0 web app to it:
Suggestions;
You can update your Visual Studio 2019 to last version, and try again. Try to deploy to a new web app in VS to see if it helps.
You can ignore the error, and deploy your website manually. (FTP, Zip deploy ).
Upvotes: 1