Add a C# api for offline-recognizer of sherpa-onnx (#129)

This commit is contained in:
manyeyes
2023-05-05 10:25:06 +08:00
committed by GitHub
parent aa7108729b
commit 0c23962129
10 changed files with 1883 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>sherpa_onnx</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>OnlineDecodeFiles</StartupObject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NAudio" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SherpaOnnx\SherpaOnnx.csproj" />
</ItemGroup>
</Project>