I want to add an application to an existing IIS site, which is not the default IIS site. This is not an ordinary request, but it is necessary when deploying to SBS for Windows 2008, therefore, for the web applications to work correctly, MVC Web APIs must be moved to SBS Web Applications.
In IIS, I would right-click in SBS Web Applications> Add Application ... and set an alias, application pool, and physical path.
Wix does not allow me to set these properties in IIS: WebApplication, and even more it seems that I need to use IIS: WebVirtualDir, but I do not want to do this. I just need to specify the Physical Path attribute where my API is set for this.
Why can't I tell WiX IIS: WebApplication - The Alias ββand Path that I want according to the IIS interface?
Of all the WiX work that I did, I would think that this would be one of the easiest things to do.
Note. I want to create an application, I do not want or should not create a site - it already exists.
source
share