inject the widget assembly into the IoC as we are going to need it further in

This commit is contained in:
TheXamlGuy
2024-01-27 16:21:53 +00:00
parent 48925b89ff
commit 640b3292b2
16 changed files with 105 additions and 64 deletions
+8
View File
@@ -0,0 +1,8 @@
using System.Reflection;
namespace Hyperbar.Widget;
public interface IWidgetAssembly
{
public Assembly Assembly { get; }
}