如何让 Wix 在最终的 MSI 中包含没有行的 CustomTable?如果我像这样简单地定义表
<CustomTable Id="MyTable">
<Column Id="Id" Type="string" Category="Identifier" PrimaryKey="yes"/>
<Column Id="Root" Type="string"/>
<Column Id="Key" Type="string"/>
<Column Id="Name" Type="string"/>
</CustomTable>
Wix 从最终输出中省略了它。
我的 DTF CustomAction 期望它在那里,以便它可以在执行期间向它添加行。
有任何想法吗?