https://bugs.winehq.org/show_bug.cgi?id=55544
--- Comment #2 from minrosa9 tw0ali@tutanota.com ---
Try the following, in case of programs published as single file:
`env -u DOTNET_ROOT -u DOTNET_BUNDLE_EXTRACT_BASE_DIR wine64 ./Program.exe`
or the following, in case of traditional multiple-files deployment:
`env -u DOTNET_ROOT -u DOTNET_BUNDLE_EXTRACT_BASE_DIR wine64 dotnet.exe ./Program.dll`
… replacing `Program` with the name of the assembly containing the entry point as appropriate.
You were absolutely right. This makes it. Thanks, a lot!