sandrohanea / whisper.net

Whisper.net. Speech to text made simple using Whisper Models
MIT License
512 stars 78 forks source link

I hope this project can support .net framework 4.7.2 #70

Closed futureflsl closed 1 year ago

futureflsl commented 1 year ago

some times,we have to use winform to develop our software,so .net framework 4.7.2 can be supported,it will be well for winform.

sandrohanea commented 1 year ago

Hello @futureflsl , This package is already supporting netframework 4.7.2 as it is targeting netstandard 2.0.

In order to have access to the IAsyncEnumerable and Memory, Whisper.net takes a dependency on 2 packages for netstandard2.0. They are normally automatically resolved if using SDK-style project, but if using the old csproj type, you'll need to manually install them, see more here: https://github.com/sandrohanea/whisper.net/issues/69

sandrohanea commented 1 year ago

Also, really recommend having a plan switching to netcore (winforms are also supported on netcore: https://github.com/dotnet/winforms)