Hi, in the
GetWaitingEventsAsync
method, a new optional parameter was added, and your problem seems to related to package version inconsistency. I know you've already cleaned your solution, rebuilt it, and checked the .dll files, but it looks like one of your .csproj files may have an incorrect package version.Could you please check your .csproj files and confirm that all package versions are correct?
I use a Directory.Packages.props file to manage all NuGet package versions, and I’ve confirmed that every ABP-related package is set to version 9.0.4.
Volo.Abp.AbpInitializationException
An error occurred during ConfigureServices phase of the module Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule, Volo.Abp.EntityFrameworkCore, Version=9.0.4.0, Culture=neutral, PublicKeyToken=null. See the inner exception for details.
at Volo.Abp.AbpApplicationBase.ConfigureServices()
at Volo.Abp.AbpApplicationBase..ctor(Type startupModuleType, IServiceCollection services, Action1 optionsAction) at Volo.Abp.AbpApplicationWithExternalServiceProvider..ctor(Type startupModuleType, IServiceCollection services, Action
1 optionsAction)
at Volo.Abp.AbpApplicationFactory.Create(Type startupModuleType, IServiceCollection services, Action1 optionsAction) at Volo.Abp.AbpApplicationFactory.Create[TStartupModule](IServiceCollection services, Action
1 optionsAction)
at Microsoft.Extensions.DependencyInjection.ServiceCollectionApplicationExtensions.AddApplication[TStartupModule](IServiceCollection services, Action1 optionsAction) at Volo.Abp.Testing.AbpIntegratedTest
1..ctor()
at Semicrol.Fundraising.FundraisingTestBase`1..ctor()
at Semicrol.Fundraising.EntityFrameworkCore.FundraisingEntityFrameworkCoreTestBase..ctor()
at Semicrol.Fundraising.Repositories.DeductionPercentagesRepository.DeductionPercentagesRepository..ctor() in C:\Users\Josuegd\Desktop\PruebaClone\Fundanet.Fundraising\test\Semicrol.Fundraising.EntityFrameworkCore.Tests\Repositories\DeductionPercentagesRepository\DeductionPercentagesRepository.cs:line 18
at System.RuntimeType.CreateInstanceDefaultCtor(Boolean publicOnly, Boolean wrapExceptions)
System.TypeLoadException Method 'GetWaitingEventsAsync' in type 'Volo.Abp.EntityFrameworkCore.DistributedEvents.DbContextEventOutbox`1' from assembly 'Volo.Abp.EntityFrameworkCore, Version=9.0.4.0, Culture=neutral, PublicKeyToken=null' does not have an implementation. at Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule.ConfigureServices(ServiceConfigurationContext context) at Volo.Abp.AbpApplicationBase.ConfigureServices()
*
To troubleshoot, I’ve already tried the following steps:
abp clean
I came across a related GitHub issue: https://github.com/abpframework/abp/issues/22048, but in my case, I’m not using any RC versions. I'm using the following Lepton theme packages:
<PackageVersion Include="Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme" Version="9.0.4" />
<PackageVersion Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton" Version="9.0.4" />
Any help would be appreciated. Let me know if you need more information.
Thanks!