Skip to content

Commit cd15366

Browse files
yulin-liYulin Li
andauthored
remove full duplex bot (#2950)
* remove full duplex bot * remove full duplex bot --------- Co-authored-by: Yulin Li <yulili@microsoft.com>
1 parent 48736ae commit cd15366

File tree

20 files changed

+18
-3261
lines changed

20 files changed

+18
-3261
lines changed

samples/csharp/maui/embedded-speech/embedded-speech/embedded-speech.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0-android</TargetFrameworks>
5-
<!-- <TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> -->
6-
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
4+
<TargetFrameworks>net9.0-android</TargetFrameworks>
5+
<!-- <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> -->
6+
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
77
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
8-
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->
8+
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->
99
<WindowsPackageType>None</WindowsPackageType>
1010
<OutputType>Exe</OutputType>
1111
<RootNamespace>EmbeddedSpeechSample</RootNamespace>
@@ -27,12 +27,12 @@
2727
<!-- <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> -->
2828
<!-- <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> -->
2929
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
30-
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
31-
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
30+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</SupportedOSPlatformVersion>
31+
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</TargetPlatformMinVersion>
3232
<!-- <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> -->
3333
</PropertyGroup>
3434

35-
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0-ios'">
35+
<PropertyGroup Condition="'$(TargetFramework)'=='net9.0-ios'">
3636
<ProvisioningType>manual</ProvisioningType>
3737
</PropertyGroup>
3838

@@ -55,13 +55,13 @@
5555
</ItemGroup>
5656

5757
<ItemGroup>
58-
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.82" />
58+
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.120" />
5959
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.46.0" />
6060
<PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.Embedded.SR" Version="1.46.0" />
6161
<PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.Embedded.TTS" Version="1.46.0" />
6262
<PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.ONNX.Runtime" Version="1.46.0" />
6363
<PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.Telemetry" Version="1.46.0" />
64-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
64+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
6565
</ItemGroup>
6666

6767
</Project>

samples/csharp/maui/speech-to-text/speech-to-text/speech-to-text.csproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
5-
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
4+
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
5+
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
66
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
7-
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->
7+
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->
88
<WindowsPackageType>None</WindowsPackageType>
99
<OutputType>Exe</OutputType>
1010
<RootNamespace>speech_to_text</RootNamespace>
@@ -31,12 +31,12 @@
3131
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
3232
</PropertyGroup>
3333

34-
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0-ios'">
34+
<PropertyGroup Condition="'$(TargetFramework)'=='net9.0-ios'">
3535
<ProvisioningType>manual</ProvisioningType>
3636
<MtouchExtraArgs>-gcc_flags="-framework AudioToolbox"</MtouchExtraArgs>
3737
</PropertyGroup>
3838

39-
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0-maccatalyst'">
39+
<PropertyGroup Condition="'$(TargetFramework)'=='net9.0-maccatalyst'">
4040
<ProvisioningType>manual</ProvisioningType>
4141
<MtouchExtraArgs>-gcc_flags="-framework AudioToolbox"</MtouchExtraArgs>
4242
</PropertyGroup>
@@ -60,10 +60,9 @@
6060
</ItemGroup>
6161

6262
<ItemGroup>
63-
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.82" />
63+
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.120" />
6464
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.46.0" />
65-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.1" />
66-
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.100" />
65+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
6766
</ItemGroup>
6867

6968
</Project>

scenarios/full-duplex-bot/Dockerfile

Lines changed: 0 additions & 22 deletions
This file was deleted.

scenarios/full-duplex-bot/docker-compose.yaml

Lines changed: 0 additions & 29 deletions
This file was deleted.

scenarios/full-duplex-bot/fullduplex/VAD/vad_iterator.py

Lines changed: 0 additions & 132 deletions
This file was deleted.

0 commit comments

Comments
 (0)