-
Notifications
You must be signed in to change notification settings - Fork 196
Description
I think I know the answer to this but just want to verify.
When instantiating the ManagedBootstrapperApplication object we are passing the assemblies as follows
Application = new ManagedBootstrapperApplication(
"Bootstrapper.UI.dll",
//"BootstrapperCore.config",
"DynamicData.dll",
"MaterialDesignColors.dll",
"MaterialDesignThemes.Wpf.dll",
"ReactiveUI.dll",
"ReactiveUI.Fody.Helpers.dll",
"ReactiveUI.Validation.dll",
"ReactiveUI.Wpf.dll",
"Splat.dll",
"System.Reactive.dll",
"System.Runtime.CompilerServices.Unsafe.dll",
"System.Threading.Tasks.Extensions.dll",
"Ookii.Dialogs.Wpf.dll",
"en.rtf"
),
When I call Bundle.Build() I get an exception "The method is not implemented in .NET Core"
Do all of the assembles passed to the ManagedBootstrapperApplication need to be .NET Core?