我正在使用 WIX 创建具有自定义应用程序池设置的网站。安装后,我的新网站使用默认应用程序池,而不是使用我在安装期间创建的网站。我可以找到虚拟目录指向新创建的应用程序池的方法,但似乎iis:WebSite
没有设置应用程序池的属性。
这是我的代码:
<iis:WebSite Id="MyWebSite" Description='MyWebsiteDesc' SiteId='*' Directory='MyWebFolder'>
<iis:WebAddress Id="AllUnassigned" Port="80" />
</iis:WebSite>
<util:User Id="MyAppPoolUser"
CreateUser="no"
Name="[APPPOOL_USER]"
Password="[APPPOOL_PASS]"
Domain="." />
<iis:WebAppPool Id="MyAppPool"
Name="[WEB_APP_NAME]"
Identity="other"
User="MyAppPoolUser"
ManagedRuntimeVersion="v4.0"
ManagedPipelineMode="Integrated" />