Web Deployment in IIS without Visual Studio

I have IIS v7.5 as my web server. This web server hosts not only ASP.NET web application, but also PHP web applications for my enterprise applications. I want to support deployment using web deployment without Visual Studio (to support non-ASP.NET developer support). We used to use Windows Sharing (SMB) to support deployment for a developer without ASP.NET. But this parameter caused a problem when our server attacked a virus, when one of our developers deploys its web applications through Windows. I know that the link is from Deployment to Azure WebRole without Visual Studio , but this is not a deployment on the azure server, but on my company’s web server (IIS).

Is there any deployment web client other than Visual Studio?

+5
source share
1 answer

Web Deploy (MSDeploy) is actually a fully standalone product. The Visual Studio Deployment Tool (or at least was) is usually referred to as the "Web Publishing Pipeline" and consists of the MS Build goals / tasks that port MSDeploy (among other things)

You can directly call MSDeploy.exe ( %programfiles%\IIS\Microsoft Web Deploy V3\msdeploy.exe ) to create packages and deploy to remote IIS servers. The tool is Windows only.

+1
source

Source: https://habr.com/ru/post/1203152/


All Articles