We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ff688 commit e7fbb77Copy full SHA for e7fbb77
src/OSharp.Wpf/Stylet/ServiceProviderBootstrapper.cs
@@ -40,7 +40,7 @@ protected virtual void DefaultConfigureIoC(IServiceCollection services)
40
var viewManagerConfig = new ViewManagerConfig()
41
{
42
ViewFactory = this.GetInstance,
43
- ViewAssemblies = [this.GetType().Assembly]
+ ViewAssemblies = new List<Assembly>(){ this.GetType().Assembly}
44
};
45
46
services.AddSingleton<IViewManager>(new ViewManager(viewManagerConfig));
0 commit comments