Closed pjcunningham closed 9 months ago
see #978
there are still issues with ME, I am working on them
The pre-release 4.222.2.0 in the Reactive.XAF lab
branch includes commits that relate to this task:
To minimize version conflicts we recommend that you use the Xpand.XAF.Core.All, Xpand.XAF.Win.All, Xpand.XAF.Web.All packages. Doing so, all packages will be at your disposal and .NET will add a dependecy only to those packages that you actually use and not to all (see the Modules installation-registrations youtube video).
Please update the related Nuget packages and test if issues is addressed. These are nightly nuget packages available only from our NugetServer.
If you do not use these packages directly but through a module of the main eXpandFramework project, please wait for the bot to notify you again when integration is finished or update the related packages manually.
Thanks a lot for your contribution.
That's fixed it!
Closing issue for age. Feel free to reopen it at any time.
.Thank you for your contribution.
𝗗𝗲𝘀𝗰𝗿𝗶𝗯𝗲 𝘁𝗵𝗲 𝗯𝘂𝗴 Running a clean XAF Blazor project on Windows results in the following error:
𝗧𝗼 𝗥𝗲𝗽𝗿𝗼𝗱𝘂𝗰𝗲
Startup.cs
:BlazorModule.cs
namespace XafXpand2224.Blazor.Server;
[ToolboxItemFilter("Xaf.Platform.Blazor")] // For more typical usage scenarios, be sure to check out https://docs.devexpress.com/eXpressAppFramework/DevExpress.ExpressApp.ModuleBase. public sealed class XafXpand2224BlazorModule : ModuleBase { public XafXpand2224BlazorModule() { RequiredModuleTypes.Add(typeof(Xpand.XAF.Modules.Reactive.ReactiveModule)); RequiredModuleTypes.Add(typeof(Xpand.XAF.Modules.RefreshView.RefreshViewModule)); } public override IEnumerable GetModuleUpdaters(IObjectSpace objectSpace, Version versionFromDB) {
return ModuleUpdater.EmptyModuleUpdaters;
}
public override void Setup(XafApplication application) {
base.Setup(application);
}
}