Deploy ASP.NET vNext beta 2 on Azure with Kudu

According to this blog post , I can deploy vNext apps for Azure using Kudu. I have successfully tried it with vNext beta 1. However, it does not work with vNext beta 2.

Why can't I deploy using vNext beta 2? I thought the whole idea with vNext is that everything (including the CLR) is loaded as NuGet packages.

+1
source share
1 answer

I ran into this problem today and it worked for me:

Set the following environment variables (application settings) on your Azure website:

SCM_KRE_Version 1.0.0-beta2

SCM_KRE_CLR CoreCLR

. SCM_KRE_CLR "" clr, SCM_KRE_CLR CoreCLR, CoreCLR, ASPNETCORE50 ( DNXCORE50 3) enter image description here

+1

All Articles