I am developing an ASP.NET vnext web project in VS 2015 RC and deploying to Azure.
I created a sub folder called dist
inside the wwwroot
folder and want it to be published to azure. The dist folder contains all the js html and css but all optimized and minified versions.
I used this command
dnu publish --out "C:\temp" --configuration Release --wwwroot "wwwroot/dist" --wwwroot-out "wwwroot" --no-source
taken from here ASPNET Home Github Page
After I submited the command i got a folder with a couple of cmd files and two folders : approot
and wwwroot
.
I then used ftp to transfet these two folders into Azure and replace the old ones. but now the app doesnt run.
What did I do wrong here?