You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
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);
And further Children property is empty
AddChildNode in TreeNode.cs is not called
I think it is a bug? or guide me to solve the issue?
Thank You
The text was updated successfully, but these errors were encountered:
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);
And further Children property is empty
AddChildNode in TreeNode.cs is not called
I think it is a bug? or guide me to solve the issue?
Thank You
The text was updated successfully, but these errors were encountered: