Dear all,
First of all, thanks for the eventstore and all the hard work you put in it.
I have an issue running the embedded eventstore . When I try to build the EmbeddedVNodeBuilder, I always get the following error :
Unhandled exception. System.TypeLoadException: Method 'get_Name' in type 'EventStore.Core.Authentication.InternalAuthentication.InternalAuthenticationProvider' from assembly 'EventStore.Core, Version=20.6.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
My implementation of the embedded ES follows the docs :
let nodeBuilt =
EmbeddedVNodeBuilder.AsSingleNode()
.OnDefaultEndpoints()
.RunInMemory()
.Build()
I have reproduced the error in this basic project : https://github.com/arthis/testESEmbedded
you just have to :
dotnet tool restore
dotnet paket install
dotnet run
What am I doing wrong ? I have tried my luck with different versions of EventStore.Plugins, even tried adding the eventstore.Client , but nothing worked so far.
Thanks for your help.