mono / mono-addins

Mono.Addins is a generic framework for creating extensible applications, and for creating add-ins which extend those applications.
MIT License
164 stars 93 forks source link

MonoAddin .NET6 #207

Open NeethaKuttappa opened 1 year ago

NeethaKuttappa commented 1 year ago

Hi All,

We have recently upgraded our project from .net 4.7.2 to .NET6. We are using MonoAddin (net standard 2.0). One of the testcase is failing when we try to List result = new List( MonoAddinsHelper.GetConfiguredExtensionNodes( MonoAddinsHelper.SelectedConfigurations, "/Widgets", false ) result is empty When I try to debug the MonoAddin source code I found that SelectedConfigurations is empty. Also SelectableConfigurations is empty var nodes = AddinManager.GetExtensionNodes(SelectableAddinConfigurationExtensionPoint); 1 And further Children property is empty 2

3 4

AddChildNode in TreeNode.cs is not called

I think it is a bug? or guide me to solve the issue?

Thank You

NeethaKuttappa commented 1 year ago

Hi Team,

Any update on this issue? Can someone take a look at this?

Thanks