Const-me / Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model
Mozilla Public License 2.0
7.67k stars 665 forks source link

How can i build target .net framework 4.8 #120

Closed dominota closed 1 year ago

dominota commented 1 year ago

Hi,

I want to build Whisper for .Net Framework 4.8? Is there any guides ?

Thanks

Const-me commented 1 year ago

The current version of the library only supports modern .NET.

I don’t have guides, but I have an example you can rework into a .NET 4 library. The example is the PowerShell module. That project targets the PowerShell which is included in Windows, therefore uses .NET Framework 4.7.2. Starting from that project, it shouldn’t be hard to implement the legacy .NET projection of the C++ DLL.

dominota commented 1 year ago

Thank you