|
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Razor"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0-android</TargetFramework> |
| 5 | + <!-- <TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> --> |
| 6 | + <!-- <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> --> |
| 7 | + <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> |
| 8 | + <!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> --> |
| 9 | + <OutputType>Exe</OutputType> |
| 10 | + <RootNamespace>Blazor_MAUI_Demos</RootNamespace> |
| 11 | + <UseMaui>true</UseMaui> |
| 12 | + <SingleProject>true</SingleProject> |
| 13 | + <ImplicitUsings>enable</ImplicitUsings> |
| 14 | + <DefineConstants>NET7_MAUI;MAUI</DefineConstants> |
| 15 | + |
| 16 | + <!-- Display name --> |
| 17 | + <ApplicationTitle>Blazor MAUI Demos</ApplicationTitle> |
| 18 | + |
| 19 | + <!-- App Identifier --> |
| 20 | + <ApplicationId>com.syncfusion.blazor_maui_demos</ApplicationId> |
| 21 | + <ApplicationIdGuid>8dbb3e6d-c5ae-45f1-ac83-b92cab89db60</ApplicationIdGuid> |
| 22 | + |
| 23 | + <!-- Versions --> |
| 24 | + <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
| 25 | + <ApplicationVersion>1</ApplicationVersion> |
| 26 | + |
| 27 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> |
| 28 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> |
| 29 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion> |
| 30 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> |
| 31 | + <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
| 32 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
| 33 | + |
| 34 | + <AndroidApplication>True</AndroidApplication> |
| 35 | + <AndroidPackageFormat>apk</AndroidPackageFormat> |
| 36 | + <AndroidUseAapt2>True</AndroidUseAapt2> |
| 37 | + <AndroidCreatePackagePerAbi>true</AndroidCreatePackagePerAbi> |
| 38 | + </PropertyGroup> |
| 39 | + |
| 40 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 41 | + <RunAOTCompilation>False</RunAOTCompilation> |
| 42 | + <PublishTrimmed>False</PublishTrimmed> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <!-- App Icon --> |
| 47 | + <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> |
| 48 | + |
| 49 | + <!-- Splash Screen --> |
| 50 | + <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> |
| 51 | + |
| 52 | + <!-- Images --> |
| 53 | + <MauiImage Include="Resources\Images\*" /> |
| 54 | + <MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" /> |
| 55 | + |
| 56 | + <!-- Custom Fonts --> |
| 57 | + <MauiFont Include="Resources\Fonts\*" /> |
| 58 | + |
| 59 | + <!-- Raw Assets (also remove the "Resources\Raw" prefix) --> |
| 60 | + <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> |
| 61 | + </ItemGroup> |
| 62 | + |
| 63 | + <ItemGroup> |
| 64 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> |
| 65 | + <PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.0" /> |
| 66 | + <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> |
| 67 | + <PackageReference Include="Markdig" Version="0.23.0" /> |
| 68 | + <PackageReference Include="Syncfusion.Blazor.Themes" Version="24.1.41" /> |
| 69 | + <PackageReference Include="Syncfusion.Blazor.Buttons" Version="24.1.41" /> |
| 70 | + <PackageReference Include="Syncfusion.Blazor.DataForm" Version="24.1.41" /> |
| 71 | + <PackageReference Include="Syncfusion.Blazor.Cards" Version="24.1.41" /> |
| 72 | + <PackageReference Include="Syncfusion.Blazor.Spinner" Version="24.1.41" /> |
| 73 | + <PackageReference Include="Syncfusion.Blazor.BarcodeGenerator" Version="24.1.41" /> |
| 74 | + <PackageReference Include="Syncfusion.Blazor.CircularGauge" Version="24.1.41" /> |
| 75 | + <PackageReference Include="Syncfusion.Blazor.LinearGauge" Version="24.1.41" /> |
| 76 | + <PackageReference Include="Syncfusion.Blazor.Notifications" Version="24.1.41" /> |
| 77 | + <PackageReference Include="Syncfusion.Blazor.Popups" Version="24.1.41" /> |
| 78 | + <PackageReference Include="Syncfusion.Blazor.SplitButtons" Version="24.1.41" /> |
| 79 | + <PackageReference Include="Syncfusion.Blazor.Layouts" Version="24.1.41" /> |
| 80 | + <PackageReference Include="Syncfusion.Blazor.Inputs" Version="24.1.41" /> |
| 81 | + <PackageReference Include="Syncfusion.Blazor.Calendars" Version="24.1.41" /> |
| 82 | + <PackageReference Include="Syncfusion.Blazor.Navigations" Version="24.1.41" /> |
| 83 | + <PackageReference Include="Syncfusion.Blazor.Diagrams" Version="24.1.41" /> |
| 84 | + <PackageReference Include="Syncfusion.Blazor.Diagram" Version="24.1.41" /> |
| 85 | + <PackageReference Include="Syncfusion.Blazor.DropDowns" Version="24.1.41" /> |
| 86 | + <PackageReference Include="Syncfusion.Blazor.RichTextEditor" Version="24.1.41" /> |
| 87 | + <PackageReference Include="Syncfusion.Blazor.ImageEditor" Version="24.1.41" /> |
| 88 | + <PackageReference Include="Syncfusion.Blazor.QueryBuilder" Version="24.1.41" /> |
| 89 | + <PackageReference Include="Syncfusion.Blazor.Schedule" Version="24.1.41" /> |
| 90 | + <PackageReference Include="Syncfusion.Blazor.Kanban" Version="24.1.41" /> |
| 91 | + <PackageReference Include="Syncfusion.Blazor.Grid" Version="24.1.41" /> |
| 92 | + <PackageReference Include="Syncfusion.Blazor.TreeGrid" Version="24.1.41" /> |
| 93 | + <PackageReference Include="Syncfusion.Blazor.Gantt" Version="24.1.41" /> |
| 94 | + <PackageReference Include="Syncfusion.Blazor.TreeMap" Version="24.1.41" /> |
| 95 | + <PackageReference Include="Syncfusion.Blazor.FileManager" Version="24.1.41" /> |
| 96 | + <PackageReference Include="Syncfusion.Blazor.HeatMap" Version="24.1.41" /> |
| 97 | + <PackageReference Include="Syncfusion.Blazor.InPlaceEditor" Version="24.1.41" /> |
| 98 | + <PackageReference Include="Syncfusion.Blazor.Maps" Version="24.1.41" /> |
| 99 | + <PackageReference Include="Syncfusion.Blazor.ProgressBar" Version="24.1.41" /> |
| 100 | + <PackageReference Include="Syncfusion.Blazor.Charts" Version="24.1.41" /> |
| 101 | + <PackageReference Include="Syncfusion.Blazor.RangeNavigator" Version="24.1.41" /> |
| 102 | + <PackageReference Include="Syncfusion.Blazor.StockChart" Version="24.1.41" /> |
| 103 | + <PackageReference Include="Syncfusion.Blazor.BulletChart" Version="24.1.41" /> |
| 104 | + <PackageReference Include="Syncfusion.Blazor.SmithChart" Version="24.1.41" /> |
| 105 | + <PackageReference Include="Syncfusion.Blazor.Sparkline" Version="24.1.41" /> |
| 106 | + <PackageReference Include="Syncfusion.Blazor.WordProcessor" Version="24.1.41" /> |
| 107 | + <PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="24.1.41" /> |
| 108 | + <PackageReference Include="Syncfusion.Blazor.PivotTable" Version="24.1.41" /> |
| 109 | + <PackageReference Include="Syncfusion.Licensing" Version="24.1.41" /> |
| 110 | + <PackageReference Include="Syncfusion.Presentation.Net.Core" Version="24.1.41" /> |
| 111 | + <PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="24.1.41" /> |
| 112 | + <PackageReference Include="Syncfusion.DocIO.Net.Core" Version="24.1.41" /> |
| 113 | + <PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="24.1.41" /> |
| 114 | + <PackageReference Include="Syncfusion.Pdf.Imaging.Net.Core" Version="24.1.41" /> |
| 115 | + <PackageReference Include="Syncfusion.XlsIO.Net.Core" Version="24.1.41" /> |
| 116 | + <PackageReference Include="Syncfusion.XlsIORenderer.Net.Core" Version="24.1.41" /> |
| 117 | + <PackageReference Include="Syncfusion.Pdf.Net.Core" Version="24.1.41" /> |
| 118 | + </ItemGroup> |
| 119 | + |
| 120 | + <ItemGroup> |
| 121 | + <None Include="Pages\**" CopyToOutputDirectory="Always" /> |
| 122 | + </ItemGroup> |
| 123 | + |
| 124 | + <ItemGroup> |
| 125 | + <Content Remove="Pages\DiagramComponent\DiagramComponent\KeyboardInteraction.razor" /> |
| 126 | + <Content Remove="Pages\DiagramComponent\DiagramComponent\PrintSample.razor" /> |
| 127 | + </ItemGroup> |
| 128 | + |
| 129 | + <ItemGroup> |
| 130 | + <None Remove="Pages\DiagramComponent\DiagramComponent\KeyboardInteraction.razor" /> |
| 131 | + <None Remove="Pages\DiagramComponent\DiagramComponent\PrintSample.razor" /> |
| 132 | + </ItemGroup> |
| 133 | + |
| 134 | + <ItemGroup> |
| 135 | + <Folder Include="wwwroot\data\pdfviewer2" /> |
| 136 | + </ItemGroup> |
| 137 | + |
| 138 | + <ItemGroup> |
| 139 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\default-data.json" /> |
| 140 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\axes-data.json" /> |
| 141 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\chart-data.json" /> |
| 142 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\double-data-aus.json" /> |
| 143 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\double-data-sl.json" /> |
| 144 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\employee-data.json" /> |
| 145 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\export-data.json" /> |
| 146 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\financial-data.json" /> |
| 147 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\period-data.json" /> |
| 148 | + <EmbeddedResource Include="wwwroot\data\rangenavigator\stock-data.json" /> |
| 149 | + <EmbeddedResource Include="wwwroot\data\stockchart\aapl.json" /> |
| 150 | + <EmbeddedResource Include="wwwroot\data\stockchart\amzn.json" /> |
| 151 | + <EmbeddedResource Include="wwwroot\data\stockchart\chart-data.json" /> |
| 152 | + <EmbeddedResource Include="wwwroot\data\stockchart\financial-stock-chart-data.json" /> |
| 153 | + <EmbeddedResource Include="wwwroot\data\stockchart\goog.json" /> |
| 154 | + <EmbeddedResource Include="wwwroot\data\stockchart\googl.json" /> |
| 155 | + <EmbeddedResource Include="wwwroot\data\chart\annotation-data.json" /> |
| 156 | + <EmbeddedResource Include="wwwroot\data\chart\financial-data.json" /> |
| 157 | + <EmbeddedResource Include="wwwroot\data\chart\rainfall-data.json" /> |
| 158 | + <EmbeddedResource Include="wwwroot\data\chart\range-data.json" /> |
| 159 | + <EmbeddedResource Include="wwwroot\data\chart\stock-chart-data.json" /> |
| 160 | + <EmbeddedResource Include="wwwroot\data\chart\synchronized-data.json" /> |
| 161 | + <EmbeddedResource Include="wwwroot\data\pdfviewer2\pdf-succinctly.pdf" /> |
| 162 | + <EmbeddedResource Include="wwwroot\data\pdfviewer2\hive-succinctly.pdf" /> |
| 163 | + <EmbeddedResource Include="wwwroot\data\pdfviewer2\invisible-digital-signature.pdf" /> |
| 164 | + <EmbeddedResource Include="wwwroot\data\pdfviewer2\form-filling-document.pdf" /> |
| 165 | + <EmbeddedResource Include="wwwroot\data\pdfviewer2\hand-written-signature.pdf" /> |
| 166 | + <EmbeddedResource Include="wwwroot\data\pdfviewer2\annotations.pdf" /> |
| 167 | + </ItemGroup> |
| 168 | + |
| 169 | +</Project> |
0 commit comments