sherpa-onnx.csproj.runtime.in
1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
<RuntimeIdentifier>{{ dotnet_rid }}</RuntimeIdentifier>
<AssemblyName>sherpa-onnx</AssemblyName>
<Version>{{ version }}</Version>
<PackageProjectUrl>https://github.com/k2-fsa/sherpa-onnx</PackageProjectUrl>
<RepositoryUrl>https://github.com/k2-fsa/sherpa-onnx</RepositoryUrl>
<PackageTags>speech recognition voice audio stt asr speech-to-text AI offline
privacy open-sourced next-gen-kaldi k2 kaldi2 sherpa-onnx</PackageTags>
<!-- Nuget Properties -->
<Description>.NET native {{ dotnet_rid }} wrapper for the sherpa-onnx project.
In general, you don't need to use this package directly.
Please use https://www.nuget.org/packages/org.k2fsa.sherpa.onnx instead
</Description>
<IncludeBuildOutput>false</IncludeBuildOutput>
<!-- Pack Option -->
<Title>sherpa-onnx {{ dotnet_rid }} v{{ version }}</Title>
<PackageId>org.k2fsa.sherpa.onnx.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>