-
Notifications
You must be signed in to change notification settings - Fork 15
/
Columns.csproj
56 lines (56 loc) · 2.87 KB
/
Columns.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks>
<OutputType>Exe</OutputType>
<UseMaui>true</UseMaui>
<ImplicitUsings>enable</ImplicitUsings>
<SingleProject>true</SingleProject>
<RootNamespace>Columns</RootNamespace>
<!-- Display name -->
<ApplicationTitle>Columns</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.Columns</ApplicationId>
<ApplicationIdGuid>57D2BB6C-486B-45A5-9497-548A3CE4C80F</ApplicationIdGuid>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiImage Include="Resources\appicon.svg" IsAppIcon="true" ForegroundFile="Resources\splashscreen.svg" Color="#FFFFFF" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\splashscreen.svg" Color="#5B27D9" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Images\andrew_fuller.jpg" />
<None Remove="Resources\Images\anne_dodsworth.jpg" />
<None Remove="Resources\Images\background.svg" />
<None Remove="Resources\Images\janet_leverling.jpg" />
<None Remove="Resources\Images\laura_callahan.jpg" />
<None Remove="Resources\Images\margaret_peacock.jpg" />
<None Remove="Resources\Images\michael_suyama.jpg" />
<None Remove="Resources\Images\nancy_davolio.jpg" />
<None Remove="Resources\Images\robert_king.jpg" />
<None Remove="Resources\Images\steven_buchanan.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="DevExpress.Maui.Core" Version="24.1.*" />
<PackageReference Include="DevExpress.Maui.DataGrid" Version="24.1.*" />
</ItemGroup>
<PropertyGroup>
<UseInterpreter Condition="$(TargetFramework.Contains('-ios'))">True</UseInterpreter>
<UseInterpreter Condition="$(TargetFramework.Contains('-android'))">False</UseInterpreter>
<RuntimeIdentifiers Condition="$(TargetFramework.Contains('-android'))">android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-ios|AnyCPU'">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
</Project>