|
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'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks> |
6 | | - <!-- 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);net6.0-tizen</TargetFrameworks> --> |
| 4 | + <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst;net9.0-windows10.0.19041.0</TargetFrameworks> |
8 | 5 | <OutputType>Exe</OutputType> |
9 | 6 | <RootNamespace>DataGridMAUI</RootNamespace> |
10 | 7 | <UseMaui>true</UseMaui> |
|
22 | 19 | <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
23 | 20 | <ApplicationVersion>1</ApplicationVersion> |
24 | 21 |
|
25 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> |
26 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> |
27 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
28 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> |
29 | | - <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
30 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
| 22 | + <!-- Platform Versions --> |
| 23 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-ios'">14.2</SupportedOSPlatformVersion> |
| 24 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">14.0</SupportedOSPlatformVersion> |
| 25 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-android'">21.0</SupportedOSPlatformVersion> |
| 26 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-windows10.0.19041.0'">10.0.17763.0</SupportedOSPlatformVersion> |
| 27 | + <TargetPlatformMinVersion Condition="'$(TargetFramework)' == 'net9.0-windows10.0.19041.0'">10.0.17763.0</TargetPlatformMinVersion> |
31 | 28 | </PropertyGroup> |
32 | 29 |
|
33 | 30 | <ItemGroup> |
|
44 | 41 | <!-- Custom Fonts --> |
45 | 42 | <MauiFont Include="Resources\Fonts\*" /> |
46 | 43 |
|
47 | | - <!-- Raw Assets (also remove the "Resources\Raw" prefix) --> |
| 44 | + <!-- Raw Assets --> |
48 | 45 | <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> |
49 | 46 | </ItemGroup> |
50 | 47 |
|
51 | 48 | <ItemGroup> |
52 | | - <PackageReference Include="Syncfusion.Maui.DataGrid" Version="20.4.50" /> |
| 49 | + <PackageReference Include="Syncfusion.Maui.DataGrid" Version="*" /> |
53 | 50 | </ItemGroup> |
54 | 51 |
|
55 | 52 | </Project> |
0 commit comments