Asked by:
Deploying a Web Site with multiple solutions to Azure

Question
-
All:
Can someone please provide me the steps to deploy a .Net Core Web Application with multiple projects to Azure? I have been unable to find a specific information for this process.
Thanks in advance.
Mark L Cole
- Moved by David EbboModerator Tuesday, April 10, 2018 9:19 PM Not Functions related
All replies
-
-
-
All:
I have created a .Net 2.0 web app solution with multiple projects - one for each general function - and I would like to deploy the solution containing all three projects to Azure. Can someone please provide me the general steps for the solution deployment.
Thanks in advance.
Mark L Cole
- Merged by Zahid Faroq Wednesday, April 11, 2018 3:00 AM Same query and same customer
-
Hello,
To deploy multiple .Net Core Web projects in same solution to multiple Azure App services have a try to use below code and see if it helps,
Add-AzureAccount $websitesName = @('WebAppName1','WebAppName2') # website name foreach ($name in $websitesName) { Publish-AzureWebsiteProject -Name $name -Package 'C:\Tom\netcoreApp.zip' # package }
For more information on Publish-AzureWebsiteProject you may refer to this link.
-----------------------------------------------------------------------------------------------------
If this answer was helpful, click “Mark as Answer” or Up-Vote. To provide additional feedback on your forum experience, click here
- Proposed as answer by Zahid Faroq Wednesday, April 11, 2018 3:59 AM
-
Zahid:
Let me rephrase my question. I have a single solution that is one Azure web site. That single solution contains 3 separate projects for data, domain, and UI portions of the single website. How do I deploy the solution with all three projects to one single Azure Web site/Application?
Thanks in advance.
Mark L Cole
- Edited by Coltrane22 Thursday, April 12, 2018 1:07 AM
-
Refer to this link for more details and step by step process on provision and deploy multiple websites from your cloud deployment.
Reference : How to Deploy Multiple Apps on Azure WebApps
-----------------------------------------------------------------------------------------------------
If this answer was helpful, click “Mark as Answer” or Up-Vote. To provide additional feedback on your forum experience, click here
- Proposed as answer by Zahid Faroq Thursday, April 12, 2018 8:07 AM
-
-