I’m working on getting the EventStore .NET Client to run on .NET Core 5.0. Has anyone else been working on this??
I noticed from the thread “dnx core support” that no one seems to be working on it yet AFAIK, but that pull requests would be welcomed, so once I get stable results, I’ll make a pull request back to the EventStore repository. What branch should I work off of?
I noticed that the TPL isn’t used much in this code. Is there a reason for that? A lot of things that have been removed for .NET core only have alternatives that, for example, return a Task, so you have to use async and await, which I have been adding to the code. Is that going to be ok ?
Yep, figured that out right after I asked. Thanks though.
The solution builds on my branch, but the tests don’t pass yet. Right now it is failing on some dependencies that aren’t available (DLLs missing) for whatever reason.
Also, for some of the changes I had to make (things that have been deprecated in .NET core), I wasn’t able to find a replacement, so I simply removed code instead of replacing it.
Some things that come to mind are Socket.Close(), and some of the methods on the x.509 certificate (they were only used in logging). There are probably others.