Hello everyone
```
New 1.2.3
```
```
**Enum Stripper :**
An enum is a special struct that inherits from System.Enum and whose actual field is value, an integer (I1/U1/I2/U2/I4/U4/I8/U8), so EnumStripper replaces all uses of your enums with their underlying integer and strips out enum types from the module, keeping execution the same but removing semantics and reducing metadata.
```
```
**Metadata Cleaner**
Prunes non-essential metadata (noisy attributes, param names, debug/PDB , optional generic-param attrs) while keeping only what the CLR requires.
```
among other small details...