1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- <OutputType>Library</OutputType>
- <TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
- <RuntimeIdentifier>{{ dotnet_rid }}</RuntimeIdentifier>
- <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>
- <!-- Nuget Properties -->
- <Description>.NET native {{ dotnet_rid }} wrapper for the sherpa-ncnn project.
- In general, you don't need to use this package directly.
- Please use https://www.nuget.org/packages/org.k2fsa.sherpa.ncnn instead
- </Description>
- <IncludeBuildOutput>false</IncludeBuildOutput>
- <!-- Pack Option -->
- <Title>sherpa-ncnn {{ dotnet_rid }} v{{ version }}</Title>
- <PackageId>org.k2fsa.sherpa.ncnn.runtime.{{ dotnet_rid }}</PackageId>
- <!-- Signing -->
- <SignAssembly>false</SignAssembly>
- <PublicSign>false</PublicSign>
- <DelaySign>false</DelaySign>
- </PropertyGroup>
- <ItemGroup>
- <None Include="../README.md" Pack="true" PackagePath="/"/>
- </ItemGroup>
- <ItemGroup>
- <!-- Native library must be in native directory... -->
- <!-- If project is built as a STATIC_LIBRARY (e.g. Windows) then we don't have to include it -->
- <Content Include="
- {{ libs }}
- ">
- <PackagePath>runtimes/{{ dotnet_rid }}/native/%(Filename)%(Extension)</PackagePath>
- <Pack>true</Pack>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|