How can I publish a subfolder on my Azure Website?

In Visual Studio 14 CTP, I created a new "ASP.NET vNext Web Application".

I want to have a local git repository that I am syncing with the BitBucket repository.

I want to move the entire folder structure to Bitbucket, which will contain the folder that I made for my SQL scripts, as well as the .sln file and everything else.

This is the part of the Visual Studio folder structure made by:

- MyApp  <-- I want this and below in BitBucket
-- MyApp.sln.ide
-- sqlscripts
-- src
---- MyApp  <-- I want only this and below to be deployed to Azure Website.
----- bin
----- Controllers
----- Models
----- wwwroot

I will pull out the entire folder structure in BitBucker, but I only need a second MyApp folder and below to go to Azure.

Can Azure just “take” this one MyApp folder and below?

+4
source share
1

, Visual Studio 14 CTP, , . .

cd src/MyApp kpm pack . src/MyApp ( , project.json src/MyApp). Azure Web Site FTP. : https://github.com/aspnet/Home/wiki/Deploy-an-AspNet-vNext-application-to-Microsoft-Azure-websites

+1

All Articles