|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks> |
| 5 | + <OutputType>Exe</OutputType> |
| 6 | + <RootNamespace>ListViewMaui</RootNamespace> |
| 7 | + <UseMaui>true</UseMaui> |
| 8 | + <SingleProject>true</SingleProject> |
| 9 | + <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> |
| 10 | + |
| 11 | + <!-- Display name --> |
| 12 | + <ApplicationTitle>ListViewMaui</ApplicationTitle> |
| 13 | + |
| 14 | + <!-- App Identifier --> |
| 15 | + <ApplicationId>com.companyname.ListViewMaui</ApplicationId> |
| 16 | + |
| 17 | + <!-- Versions --> |
| 18 | + <ApplicationVersion>1</ApplicationVersion> |
| 19 | + |
| 20 | + <!-- Required for C# Hot Reload --> |
| 21 | + <UseInterpreter Condition="'$(Configuration)' == 'Debug'">True</UseInterpreter> |
| 22 | + |
| 23 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-ios'">14.2</SupportedOSPlatformVersion> |
| 24 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-maccatalyst'">14.0</SupportedOSPlatformVersion> |
| 25 | + <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-android'">21.0</SupportedOSPlatformVersion> |
| 26 | + <SupportedOSPlatformVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.17763.0</SupportedOSPlatformVersion> |
| 27 | + <TargetPlatformMinVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.17763.0</TargetPlatformMinVersion> |
| 28 | + </PropertyGroup> |
| 29 | + |
| 30 | + <ItemGroup> |
| 31 | + <!-- App Icon --> |
| 32 | + <MauiIcon Include="Resources\appicon.svg" ForegroundFile="Resources\appiconfg.svg" Color="#512BD4" /> |
| 33 | + |
| 34 | + <!-- Splash Screen --> |
| 35 | + <MauiSplashScreen Include="Resources\appiconfg.svg" Color="#512BD4" /> |
| 36 | + |
| 37 | + <!-- Images --> |
| 38 | + <MauiImage Include="Resources\Images\*" /> |
| 39 | + |
| 40 | + <!-- Custom Fonts --> |
| 41 | + <MauiFont Include="Resources\Fonts\*" /> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <ItemGroup Condition="$(TargetFramework.Contains('-windows'))"> |
| 45 | + <!-- Required - WinUI does not yet have buildTransitive for everything --> |
| 46 | + <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0-preview3" /> |
| 47 | + <PackageReference Include="Microsoft.Graphics.Win2D" Version="1.0.0.29-preview3" /> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | + <ItemGroup> |
| 51 | + <PackageReference Include="Syncfusion.Maui.Core" Version="19.3.1.97" /> |
| 52 | + <PackageReference Include="Syncfusion.Maui.DataSource" Version="19.3.1.16" /> |
| 53 | + <PackageReference Include="Syncfusion.Maui.GridCommon" Version="19.3.1.10" /> |
| 54 | + <PackageReference Include="Syncfusion.Maui.ListView" Version="19.3.1.42" /> |
| 55 | + </ItemGroup> |
| 56 | + |
| 57 | + <PropertyGroup Condition="$(TargetFramework.Contains('-windows'))"> |
| 58 | + <OutputType>WinExe</OutputType> |
| 59 | + <RuntimeIdentifier>win-x64</RuntimeIdentifier> |
| 60 | + </PropertyGroup> |
| 61 | + |
| 62 | +</Project> |
0 commit comments