1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- <OutputType>Library</OutputType>
- <LangVersion>8.0</LangVersion>
- <TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
- <RuntimeIdentifiers>linux-x64;osx-x64;win-x64</RuntimeIdentifiers>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <AssemblyName>sherpa-ncnn</AssemblyName>
- <Version>{{ version }}</Version>
- <PackageProjectUrl>https://github.com/k2-fsa/sherpa-ncnn</PackageProjectUrl>
- <RepositoryUrl>https://github.com/k2-fsa/sherpa-ncnn</RepositoryUrl>
- <PackageTags>speech recognition voice audio stt asr speech-to-text AI offline
- privacy open-sourced next-gen-kaldi k2 kaldi2 sherpa-ncnn</PackageTags>
- <Authors>The Next-gen Kaldi development team</Authors>
- <Owners>The Next-gen Kaldi development team</Owners>
- <Company>Xiaomi Corporation</Company>
- <Copyright>Copyright 2019-2023 Xiaomi Corporation</Copyright>
- <Description>sherpa-ncnn is an open-source real-time speech recognition toolkit developed
- by the Next-gen Kaldi team. It supports streaming recognition on a variety of
- platforms such as Android, iOS, Raspberry, Linux, Windows, macOS, etc.
- It does not require Internet connection during recognition.
- See the documentation https://k2-fsa.github.io/sherpa/ncnn/index.html
- for details.
- </Description>
- <!-- Pack Option -->
- <Title>sherpa-ncnn v{{ version }}</Title>
- <PackageId>org.k2fsa.sherpa.ncnn</PackageId>
- <!-- Signing -->
- <SignAssembly>false</SignAssembly>
- <PublicSign>false</PublicSign>
- <DelaySign>false</DelaySign>
- </PropertyGroup>
- <PropertyGroup>
- <RestoreSources>{{ packages_dir }};$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
- </PropertyGroup>
- <ItemGroup>
- <None Include="../README.md" Pack="true" PackagePath="/"/>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="org.k2fsa.sherpa.ncnn.runtime.linux-x64" Version="{{ version }}" />
- <PackageReference Include="org.k2fsa.sherpa.ncnn.runtime.osx-x64" Version="{{ version }}" />
- <PackageReference Include="org.k2fsa.sherpa.ncnn.runtime.win-x64" Version="{{ version }}" />
- </ItemGroup>
- </Project>
|