|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks> |
5 | | - <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) and '$(MSBuildRuntimeType)' == 'Full'">$(TargetFrameworks);net6.0-windows10.0.19041</TargetFrameworks> |
| 4 | + <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) and '$(MSBuildRuntimeType)' == 'Full'">$(TargetFrameworks);net9.0-windows10.0.19041</TargetFrameworks> |
6 | 6 | <OutputType>Exe</OutputType> |
7 | 7 | <RootNamespace>RadialGaugeBGImage</RootNamespace> |
8 | 8 | <UseMaui>true</UseMaui> |
|
24 | 24 | <!-- Required for C# Hot Reload --> |
25 | 25 | <UseInterpreter Condition="'$(Configuration)' == 'Debug'">True</UseInterpreter> |
26 | 26 |
|
27 | | - <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-ios'">14.2</SupportedOSPlatformVersion> |
28 | | - <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-maccatalyst'">14.0</SupportedOSPlatformVersion> |
29 | | - <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-android'">21.0</SupportedOSPlatformVersion> |
| 27 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-ios'">15.0</SupportedOSPlatformVersion> |
| 28 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">15.0</SupportedOSPlatformVersion> |
| 29 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-android'">21.0</SupportedOSPlatformVersion> |
30 | 30 | <SupportedOSPlatformVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.17763.0</SupportedOSPlatformVersion> |
31 | 31 | <TargetPlatformMinVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.17763.0</TargetPlatformMinVersion> |
32 | 32 | </PropertyGroup> |
|
51 | 51 |
|
52 | 52 | <ItemGroup Condition="$(TargetFramework.Contains('-windows'))"> |
53 | 53 | <!-- Required - WinUI does not yet have buildTransitive for everything --> |
54 | | - <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" /> |
55 | | - <PackageReference Include="Microsoft.Graphics.Win2D" Version="1.0.0.30" /> |
| 54 | + <PackageReference Include="Microsoft.WindowsAppSDK" Version="*" /> |
| 55 | + <PackageReference Include="Microsoft.Graphics.Win2D" Version="*" /> |
56 | 56 | </ItemGroup> |
57 | 57 |
|
58 | 58 | <ItemGroup> |
59 | 59 | <PackageReference Include="Syncfusion.Maui.Core" Version="*" /> |
60 | 60 | <PackageReference Include="Syncfusion.Maui.Gauges" Version="*" /> |
| 61 | + <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> |
| 62 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.4" /> |
61 | 63 | </ItemGroup> |
62 | 64 |
|
63 | 65 | <PropertyGroup Condition="$(TargetFramework.Contains('-windows'))"> |
|
0 commit comments