Web Deploy creates a virtual directory and adds an application

I need to deploy web applications on IIS 7.5. I tried to create a web deploy package, but I had a problem.

Most of the applications I need to deploy are nested in virtual directories. Example:

Web Site/vDir/vDir/application 

This seems to work if virtual directories are already created. But if they are missing, the application is created directly under the Website.

I am creating a package with the /t:build;Package options

ATM machines. I use the cmd file for deployment with the /Y /m:[Servername] options /Y /m:[Servername] I can’t find a way to change the dest option. Should i use msdeploy instead?

+4
source share
1 answer

I saw a very similar question containing a good answer from AaronS .

He basically suggests creating a custom build task, including sample code.

0
source

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


All Articles