Selected Assembly Info Area

The UI elements placed in this region will pop up in the selected assembly info area.

assemblyinfo

Example

Code implementaion:

C#
[ModuleExport(typeof(PluginModule))]
public class PluginModule : IModule, IPartImportsSatisfiedNotification
{
    public void OnImportsSatisfied()
    {
        this.regionManager.AddToRegion("AssemblyInfoRegion", AssemblyInfoRegionView);
    }
}
In this article