-
Notifications
You must be signed in to change notification settings - Fork 15
/
GridExport.csproj
45 lines (45 loc) · 2.39 KB
/
GridExport.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-ios;net8.0-android</TargetFrameworks>
<OutputType>Exe</OutputType>
<UseMaui>true</UseMaui>
<ImplicitUsings>enable</ImplicitUsings>
<SingleProject>true</SingleProject>
<RootNamespace>GridExport</RootNamespace>
<!-- Display name -->
<ApplicationTitle>GridExport</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.GridExport</ApplicationId>
<ApplicationIdGuid>5AFB30D8-36B9-4EF4-B571-70C329B2E006</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>
<UseInterpreter Condition="$(TargetFramework.Contains('-ios')) AND '$(Configuration)' == 'Release'">True</UseInterpreter>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#6750A4" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#6750A4" BaseSize="128,128" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
<EmbeddedResource Include="Models\Employees.json">
<LogicalName>Employees.json</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="DevExpress.Data" Version="24.1.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="DevExpress.Maui.Controls" Version="24.1.*" />
<PackageReference Include="DevExpress.Maui.Core" Version="24.1.*" />
<PackageReference Include="DevExpress.Maui.Editors" Version="24.1.*" />
<PackageReference Include="DevExpress.Maui.DataGrid" Version="24.1.*" />
<PackageReference Include="DevExpress.Maui.DataGrid.Export" Version="24.1.*" />
</ItemGroup>
</Project>