-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTabView_CreateItems.csproj
36 lines (36 loc) · 1.48 KB
/
TabView_CreateItems.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Android -->
<TargetFrameworks>net9.0-ios;net9.0-android</TargetFrameworks>
<OutputType>Exe</OutputType>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<RootNamespace>TabView_CreateItems</RootNamespace>
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
<!-- Display name -->
<ApplicationTitle>TabView_CreateItems</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.TabView_CreateItems</ApplicationId>
<!-- Versions -->
<ApplicationVersion>1</ApplicationVersion>
<MauiVersion>9.0.10</MauiVersion>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiImage Include="Resources\appicon.svg" ForegroundFile="Resources\appiconfg.svg" IsAppIcon="true" Color="#512BD4" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\appiconfg.svg" Color="#512BD4" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="DevExpress.Maui.Controls" Version="24.2.*" />
</ItemGroup>
<PropertyGroup>
<UseInterpreter Condition="$(TargetFramework.Contains('-android'))">False</UseInterpreter>
</PropertyGroup>
</Project>