I can use SkipType but that still obfuscates the 'named-values'...?
namespace TestClasses
{
public enum Enum1
{
Value1,
Value2,
ValueA
}
}
To skip renaming of Enum1.Value2, you can use the following xml:
<Module file='$(InPath)\AssemblyWithEnums.dll'>
<SkipField type='TestClasses.Enum1' name='Value2' />
</Module>
It will still rename the Enum1 type itself, unless you add a SkipType
element that excludes it.