BepInEx.AssemblyPublicizer icon indicating copy to clipboard operation
BepInEx.AssemblyPublicizer copied to clipboard

Results 9 BepInEx.AssemblyPublicizer issues
Sort by recently updated
recently updated
newest added

Publicizing an assembly which contain private methods that are overrides from a base class/interface causes ambiguity errors in certain IDE's (Rider in my case). I remember fixing this using a...

NStrip had this option added by @xiaoxiao921 in https://github.com/bbepis/NStrip/pull/3, seems like it would be good to have here as well.

enhancement

It would be nice to define a list of types NOT to publicize. In our case (BattleTech modding) it seems inheriting from publicized classes will crash ins some cases, so...

enhancement

Another process might be using files that the publicizer wants to write to. Having a retry mechanic would then improve the UX so user doesn't need to restart the build....

It meant that not only it ignored --dont-add-attribute, but it was always assumed to take effect even if it wasn't specified. This is the same than the other PR, but...

It meant that not only it ignored --dont-add-attribute, but it was always assumed to take effect even if it wasn't specified.

https://github.com/BepInEx/BepInEx.AssemblyPublicizer/blob/874cfb60160c053cbefc7277f5f0cb6f7a732748/BepInEx.AssemblyPublicizer.Cli/PublicizeCommand.cs#L66-L70 There should be a check for --overwrite option. How I use it: ```console assembly-publicizer somepath.dll --output somepath.dll --overwrite ```