Committed by
GitHub
Remove unused files from .Net examples (#1051)
正在显示
13 个修改的文件
包含
1 行增加
和
168 行删除
| @@ -135,15 +135,6 @@ jobs: | @@ -135,15 +135,6 @@ jobs: | ||
| 135 | shell: bash | 135 | shell: bash |
| 136 | run: | | 136 | run: | |
| 137 | cp -v scripts/dotnet/examples/Common.csproj dotnet-examples/Common/ | 137 | cp -v scripts/dotnet/examples/Common.csproj dotnet-examples/Common/ |
| 138 | - cp -v scripts/dotnet/examples/offline-tts.csproj dotnet-examples/offline-tts/ | ||
| 139 | - cp -v scripts/dotnet/examples/offline-decode-files.csproj dotnet-examples/offline-decode-files/ | ||
| 140 | - cp -v scripts/dotnet/examples/online-decode-files.csproj dotnet-examples/online-decode-files/ | ||
| 141 | - cp -v scripts/dotnet/examples/speech-recognition-from-microphone.csproj dotnet-examples/speech-recognition-from-microphone/ | ||
| 142 | - cp -v scripts/dotnet/examples/spoken-language-identification.csproj dotnet-examples/spoken-language-identification/ | ||
| 143 | - cp -v scripts/dotnet/examples/streaming-hlg-decoding.csproj dotnet-examples/streaming-hlg-decoding | ||
| 144 | - cp -v scripts/dotnet/examples/speaker-identification.csproj dotnet-examples/speaker-identification | ||
| 145 | - cp -v scripts/dotnet/examples/offline-punctuation.csproj dotnet-examples/offline-punctuation | ||
| 146 | - cp -v scripts/dotnet/examples/vad-non-streaming-asr-paraformer.csproj dotnet-examples/vad-non-streaming-asr-paraformer | ||
| 147 | 138 | ||
| 148 | ls -lh /tmp | 139 | ls -lh /tmp |
| 149 | 140 |
| @@ -3,7 +3,6 @@ | @@ -3,7 +3,6 @@ | ||
| 3 | <PropertyGroup> | 3 | <PropertyGroup> |
| 4 | <TargetFramework>net6.0</TargetFramework> | 4 | <TargetFramework>net6.0</TargetFramework> |
| 5 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | 5 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 6 | - <RestoreSources>/tmp/packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources> | ||
| 7 | </PropertyGroup> | 6 | </PropertyGroup> |
| 8 | <ItemGroup> | 7 | <ItemGroup> |
| 9 | <PackageReference Include="CommandLineParser" Version="2.9.1" /> | 8 | <PackageReference Include="CommandLineParser" Version="2.9.1" /> |
| @@ -2,6 +2,7 @@ | @@ -2,6 +2,7 @@ | ||
| 2 | 2 | ||
| 3 | <PropertyGroup> | 3 | <PropertyGroup> |
| 4 | <TargetFramework>.net6</TargetFramework> | 4 | <TargetFramework>.net6</TargetFramework> |
| 5 | + <RestoreSources>/tmp/packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources> | ||
| 5 | </PropertyGroup> | 6 | </PropertyGroup> |
| 6 | 7 | ||
| 7 | <ItemGroup> | 8 | <ItemGroup> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>offline_decode_files</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>offline_punctuation</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>offline_tts_play</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <PackageReference Include="PortAudioSharp2" Version="*" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | - <ItemGroup> | ||
| 16 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 17 | - </ItemGroup> | ||
| 18 | - | ||
| 19 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>offline_tts</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>online_decode_files</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>speaker_identification</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>speech_recognition_from_microphone</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <PackageReference Include="PortAudioSharp2" Version="*" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | - <ItemGroup> | ||
| 16 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 17 | - </ItemGroup> | ||
| 18 | - | ||
| 19 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>spoken_language_identification</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>streaming_hlg_decoding</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
| 1 | -<Project Sdk="Microsoft.NET.Sdk"> | ||
| 2 | - | ||
| 3 | - <PropertyGroup> | ||
| 4 | - <OutputType>Exe</OutputType> | ||
| 5 | - <TargetFramework>net6.0</TargetFramework> | ||
| 6 | - <RootNamespace>vad_non_streaming_asr_paraformer</RootNamespace> | ||
| 7 | - <ImplicitUsings>enable</ImplicitUsings> | ||
| 8 | - <Nullable>enable</Nullable> | ||
| 9 | - </PropertyGroup> | ||
| 10 | - | ||
| 11 | - <ItemGroup> | ||
| 12 | - <ProjectReference Include="..\Common\Common.csproj" /> | ||
| 13 | - </ItemGroup> | ||
| 14 | - | ||
| 15 | -</Project> |
-
请 注册 或 登录 后发表评论