|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <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> |
7 | 7 | <!-- 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> --> |
9 | 9 | <WindowsPackageType>None</WindowsPackageType> |
10 | 10 | <OutputType>Exe</OutputType> |
11 | 11 | <RootNamespace>EmbeddedSpeechSample</RootNamespace> |
|
27 | 27 | <!-- <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> --> |
28 | 28 | <!-- <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> --> |
29 | 29 | <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> |
32 | 32 | <!-- <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> --> |
33 | 33 | </PropertyGroup> |
34 | 34 |
|
35 | | - <PropertyGroup Condition="'$(TargetFramework)'=='net8.0-ios'"> |
| 35 | + <PropertyGroup Condition="'$(TargetFramework)'=='net9.0-ios'"> |
36 | 36 | <ProvisioningType>manual</ProvisioningType> |
37 | 37 | </PropertyGroup> |
38 | 38 |
|
|
55 | 55 | </ItemGroup> |
56 | 56 |
|
57 | 57 | <ItemGroup> |
58 | | - <PackageReference Include="Microsoft.Maui.Controls" Version="8.0.82" /> |
| 58 | + <PackageReference Include="Microsoft.Maui.Controls" Version="9.0.120" /> |
59 | 59 | <PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.46.0" /> |
60 | 60 | <PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.Embedded.SR" Version="1.46.0" /> |
61 | 61 | <PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.Embedded.TTS" Version="1.46.0" /> |
62 | 62 | <PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.ONNX.Runtime" Version="1.46.0" /> |
63 | 63 | <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" /> |
65 | 65 | </ItemGroup> |
66 | 66 |
|
67 | 67 | </Project> |
0 commit comments