我正在尝试使用WiX 工具集创建一个 MSI 。我有几个问题:
在 WebAppPool 文档中有两个属性:
ManagedRuntimeVersion
和ManagedPipelineMode
. 他们的期望值是多少?文档提到它们可以使用格式化属性进行设置。这些属性是什么?
我会非常感谢一个样品。
ManagedRuntimeVersion
refers to the version of .NET the app pool should use (e.g. v4.0
)
ManagedPipelineMode
refers to the pipeline mode the app pool should run in (e.g. integrated
)
Formatted properties just means you can set the values using the name of a Property
(wix docs) instead of specifying the value inline