-
Notifications
You must be signed in to change notification settings - Fork 15
/
AdvancedColumnLayout.csproj
53 lines (53 loc) · 2.59 KB
/
AdvancedColumnLayout.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
<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>AdvancedColumnLayout</RootNamespace>
<!-- Display name -->
<ApplicationTitle>AdvancedColumnLayout</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.AdvancedColumnLayout</ApplicationId>
<ApplicationIdGuid>2590F31D-61D7-45FF-B883-93A093D7F459</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="Employees.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Employees.json">
<LogicalName>employees</LogicalName>
</EmbeddedResource>
</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.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.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>