Open anibyl opened 4 months ago
Running it on Fedora 40 gives me this error
$ ./TwitchClipper No usable version of libssl was found Aborted (core dumped)
I was able to fix it by reassembling the binary with a newer .NET. In TwitchClipper.scproj, change net5.0 to a newer one, like:
TwitchClipper.scproj
<TargetFramework>net8.0</TargetFramework>
Then rebuild:
$ dotnet publish --os linux
I hope this helps someone. @mortenmoulder you might want to update the project, thank you for your work!
Running it on Fedora 40 gives me this error
I was able to fix it by reassembling the binary with a newer .NET. In
TwitchClipper.scproj
, change net5.0 to a newer one, like:Then rebuild:
I hope this helps someone. @mortenmoulder you might want to update the project, thank you for your work!