sherpa-ncnn.csproj.in 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
  4. <PackageReadmeFile>README.md</PackageReadmeFile>
  5. <OutputType>Library</OutputType>
  6. <LangVersion>8.0</LangVersion>
  7. <TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
  8. <RuntimeIdentifiers>linux-x64;osx-x64;win-x64</RuntimeIdentifiers>
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. <AssemblyName>sherpa-ncnn</AssemblyName>
  11. <Version>{{ version }}</Version>
  12. <PackageProjectUrl>https://github.com/k2-fsa/sherpa-ncnn</PackageProjectUrl>
  13. <RepositoryUrl>https://github.com/k2-fsa/sherpa-ncnn</RepositoryUrl>
  14. <PackageTags>speech recognition voice audio stt asr speech-to-text AI offline
  15. privacy open-sourced next-gen-kaldi k2 kaldi2 sherpa-ncnn</PackageTags>
  16. <Authors>The Next-gen Kaldi development team</Authors>
  17. <Owners>The Next-gen Kaldi development team</Owners>
  18. <Company>Xiaomi Corporation</Company>
  19. <Copyright>Copyright 2019-2023 Xiaomi Corporation</Copyright>
  20. <Description>sherpa-ncnn is an open-source real-time speech recognition toolkit developed
  21. by the Next-gen Kaldi team. It supports streaming recognition on a variety of
  22. platforms such as Android, iOS, Raspberry, Linux, Windows, macOS, etc.
  23. It does not require Internet connection during recognition.
  24. See the documentation https://k2-fsa.github.io/sherpa/ncnn/index.html
  25. for details.
  26. </Description>
  27. <!-- Pack Option -->
  28. <Title>sherpa-ncnn v{{ version }}</Title>
  29. <PackageId>org.k2fsa.sherpa.ncnn</PackageId>
  30. <!-- Signing -->
  31. <SignAssembly>false</SignAssembly>
  32. <PublicSign>false</PublicSign>
  33. <DelaySign>false</DelaySign>
  34. </PropertyGroup>
  35. <PropertyGroup>
  36. <RestoreSources>{{ packages_dir }};$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <None Include="../README.md" Pack="true" PackagePath="/"/>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <PackageReference Include="org.k2fsa.sherpa.ncnn.runtime.linux-x64" Version="{{ version }}" />
  43. <PackageReference Include="org.k2fsa.sherpa.ncnn.runtime.osx-x64" Version="{{ version }}" />
  44. <PackageReference Include="org.k2fsa.sherpa.ncnn.runtime.win-x64" Version="{{ version }}" />
  45. </ItemGroup>
  46. </Project>