为了将各种类型排除在烟雾/分子的生成之外,你需要修改用于你的组装的分子档案。 虽然参考手册的“Type Filtering”部分仅介绍了StubGeneration/code>要素,但还有MoleGeneration
要素,这些要素同样运作,但管理分子的生成。
To exclude a type from stub and mole generation specify the type name in a Remove
element so that the .moles file for your assembly looks like this:
<Moles xmlns="http://schemas.microsoft.com/moles/2010/" Diagnostic="true">
<Assembly Name="your_assembly" />
<StubGeneration>
<Types>
<Remove FullName="Your.Type.Full.Name!" />
</Types>
</StubGeneration>
<MoleGeneration>
<Types>
<Remove FullName="Your.Type.Full.Name!" />
</Types>
</MoleGeneration>
</Moles>
在这里,如何使只为1类(<代码>)制造 st和 mo。 页: 1
<Moles xmlns="http://schemas.microsoft.com/moles/2010/" Diagnostic="true">
<Assembly Name="your_assembly" />
<StubGeneration>
<Types>
<Clear />
<Add FullName="Your.Type.Full.Name!" />
</Types>
</StubGeneration>
<MoleGeneration>
<Types>
<Clear />
<Add FullName="Your.Type.Full.Name!" />
</Types>
</MoleGeneration>
</Moles>