I'm having trouble getting SkipType to work. I'm using VS.NET 2005 and
want to skip the Settings file for my project (otherwise runtime
reflection is screwed). So I specified my module tag (only one module,
so thats easy) and a SkipType and a SkipMethod tag inside the Module
tag. Something like this ("Jacobi" is my surname).
<Module file="$(InPath)\Jacobi.MyApp.exe" >
<SkipType type="Jacobi.MyApp.Properties.Settings" />
<SkipMethod type="Jacobi.MyApp.Properties.Settings"
attrib="public" rx=".*" />
</Module>
In the mapping file I can see that the public methods (and properties)
are skipped, but the type is still being obfucated (into A.f)
Am I doing it wrong?
-- Marc
<Module file="$(InPath)\Jacobi.MyApp.exe" >
<SkipType name="Jacobi.MyApp.Properties.Settings" />
<SkipMethod type="Jacobi.MyApp.Properties.Settings"
attrib="public" rx=".*" />
</Module>
The attribute in your SkipType element that specifies the name of the
type should be 'name'.