Can StackExchange.Redis be installed and work in WINE?

Questions about Wine on Linux
Locked
sdai2020
Newbie
Newbie
Posts: 2
Joined: Tue Nov 17, 2020 6:40 pm

Can StackExchange.Redis be installed and work in WINE?

Post by sdai2020 »

I have a C# application which uses StackExchange.Redis to publish messages to and receives messages from Redis server. It works fine on Windows 10 environment. But it does not work on Linux VM (CentOS 7) with WINE 3.0.3. It failed with a program error and the output contained the following error message:
0084:fixme:shell:URL_ParseUrl failed to parse L"StackExchange.Redis"

And it also threw an unhandled exception - Could not load file or assembly 'StackExchange.Redis, Version=2.0.0.0, Culture=neutral, PublicKeyToken=c219ff1ca8c2ce46' or one of its dependencies.

I upgraded WINE from 3.0.3 to 5.0.3 and the issue was not fixed.
Does StackExchange.Redis work in WINE on Linux? How can I install StackExchange.Redis package in WINE?
spoon0042
Level 6
Level 6
Posts: 570
Joined: Thu Dec 24, 2009 11:00 am

Re: Can StackExchange.Redis be installed and work in WINE?

Post by spoon0042 »

Can you post a full log with 5.0.3? - https://wiki.winehq.org/FAQ#How_can_I_g ... tput.29.3F

You may have better luck using native .net but that would be the first step.
sdai2020
Newbie
Newbie
Posts: 2
Joined: Tue Nov 17, 2020 6:40 pm

Re: Can StackExchange.Redis be installed and work in WINE?

Post by sdai2020 »

It works with Wine 5.0.3 now after all needed DLLs were copied into Linux VM. Thanks for the response.
Locked