Addon listen to Options-AddOn

Hi together,

there is a AddOn overwiew in Options -> Add-On with. How can I add my AddOn in this overwiew?

Thanks,
Simon

You need to have a class implement VisualComponents.UX.Shared.IAddOnSetting and export it with MEF.

[Export(typeof(IAddOnSetting))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class MyAddOnSettings : IAddOnSetting
{
	...
}