abp studio 0.9.22
I'm trying to add a new package to an existing ABP project. Attempting to add a "Blazor Server Host Application" with the name Platinum.MainAppHost
. But when I go to this new project in Visual Studio, I am unable to get it running.
Showing this error:
System.TypeLoadException
HResult=0x80131522
Message=Method 'FieldSize' in type 'Blazorise.Bootstrap.BootstrapClassProvider' from assembly 'Blazorise.Bootstrap, Version=1.2.3.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
Source=Blazorise.Bootstrap
StackTrace:
at Blazorise.Bootstrap.Config.AddBootstrapProviders(IServiceCollection serviceCollection, Action`1 configureClassProvider)
at Platinum.MainAppHost.MainAppHostBlazorHostModule.ConfigureBlazorise(ServiceConfigurationContext context) in C:\code\Platinum\src\Platinum\src\Platinum.MainAppHost\MainAppHostBlazorHostModule.cs:line 43
at Platinum.MainAppHost.MainAppHostBlazorHostModule.ConfigureServices(ServiceConfigurationContext context) in C:\code\Platinum\src\Platinum\src\Platinum.MainAppHost\MainAppHostBlazorHostModule.cs:line 29
at Volo.Abp.Modularity.AbpModule.ConfigureServicesAsync(ServiceConfigurationContext context)
at Volo.Abp.AbpApplicationBase.<ConfigureServicesAsync>d__29.MoveNext()
For reference, here's what the whole ABP solution looks like. Everything besides this new Platinum.MainAppHost
package runs as expected.
I'm assuming some dependency versions are out of sync or something? But I'm new to ABP, so it's possible I'm also just missing a simple setup step?