|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFrameworks>net8.0-android;net8.0-ios;net8.0</TargetFrameworks> |
4 | | - <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> |
| 3 | + <TargetFrameworks>net9.0-android;net9.0-ios;net9.0</TargetFrameworks> |
| 4 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> |
5 | 5 | <SingleProject>true</SingleProject> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 7 | <Nullable>enable</Nullable> |
|
11 | 11 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> |
12 | 12 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> |
13 | 13 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
14 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> |
15 | | - <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
| 14 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</SupportedOSPlatformVersion> |
| 15 | + <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</TargetPlatformMinVersion> |
16 | 16 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
17 | 17 |
|
18 | 18 | <!-- NuGet --> |
|
68 | 68 | </ItemGroup> |
69 | 69 |
|
70 | 70 | <ItemGroup> |
71 | | - <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> |
72 | | - <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" /> |
73 | | - <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> |
| 71 | + <PackageReference Include="Microsoft.Maui.Controls" Version="9.0.110" /> |
| 72 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.9" /> |
74 | 73 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" IsImplicitlyDefined="true" /> |
75 | | - <PackageReference Include="System.Management" Version="8.0.0" Condition="$(TargetFramework.Contains('-windows')) == true" /> |
| 74 | + <PackageReference Include="System.Management" Version="9.0.9" Condition="$(TargetFramework.Contains('-windows')) == true" /> |
76 | 75 | </ItemGroup> |
77 | 76 |
|
78 | 77 | <!-- Package additions --> |
|
0 commit comments