|
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</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> |
8 | 6 | <OutputType>Exe</OutputType> |
9 | 7 | <RootNamespace>DataGridMAUI</RootNamespace> |
10 | 8 | <UseMaui>true</UseMaui> |
11 | 9 | <SingleProject>true</SingleProject> |
12 | 10 | <ImplicitUsings>enable</ImplicitUsings> |
13 | 11 |
|
14 | | - <!-- Display name --> |
15 | 12 | <ApplicationTitle>DataGridMAUI</ApplicationTitle> |
16 | | - |
17 | | - <!-- App Identifier --> |
18 | 13 | <ApplicationId>com.companyname.datagridmaui</ApplicationId> |
19 | 14 | <ApplicationIdGuid>8be4dd26-39f7-423c-932a-70e7af6e7f09</ApplicationIdGuid> |
20 | | - |
21 | | - <!-- Versions --> |
22 | 15 | <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
23 | 16 | <ApplicationVersion>1</ApplicationVersion> |
24 | 17 |
|
| 18 | + <!-- OS versions may remain the same unless new APIs are required --> |
25 | 19 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> |
26 | 20 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> |
27 | 21 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
28 | 22 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> |
29 | 23 | <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
30 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
31 | 24 | </PropertyGroup> |
32 | 25 |
|
33 | 26 | <ItemGroup> |
34 | | - <!-- App Icon --> |
35 | 27 | <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> |
36 | | - |
37 | | - <!-- Splash Screen --> |
38 | 28 | <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> |
39 | | - |
40 | | - <!-- Images --> |
41 | 29 | <MauiImage Include="Resources\Images\*" /> |
42 | 30 | <MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" /> |
43 | | - |
44 | | - <!-- Custom Fonts --> |
45 | 31 | <MauiFont Include="Resources\Fonts\*" /> |
46 | | - |
47 | | - <!-- Raw Assets (also remove the "Resources\Raw" prefix) --> |
48 | 32 | <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> |
49 | 33 | </ItemGroup> |
50 | 34 |
|
51 | 35 | <ItemGroup> |
52 | | - <PackageReference Include="Syncfusion.Maui.DataGrid" Version="20.4.51" /> |
| 36 | + <PackageReference Include="Syncfusion.Maui.DataGrid" Version="*" /> |
53 | 37 | </ItemGroup> |
54 | 38 |
|
| 39 | + |
55 | 40 | </Project> |
0 commit comments