-
Notifications
You must be signed in to change notification settings - Fork 18
/
MauiStocksMini.csproj
59 lines (59 loc) · 2.36 KB
/
MauiStocksMini.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
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- iOS, Android, MacCatalyst -->
<TargetFrameworks>net8.0-ios;net8.0-android</TargetFrameworks>
<OutputType>Exe</OutputType>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<RootNamespace>DevExpress.Maui.Demo.Stocks</RootNamespace>
<!-- Display name -->
<ApplicationTitle>MauiStocksMini</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.MauiStocksMini</ApplicationId>
<!-- Versions -->
<ApplicationVersion>1</ApplicationVersion>
</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\*.svg" />
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Images\financial_chart.svg" />
<None Remove="Resources\Images\not_changed.png" />
<None Remove="Resources\Images\quote_arrow_down.svg" />
<None Remove="Resources\Images\quote_arrow_up.svg" />
<None Remove="Resources\symbols.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Data\symbols.json">
<LogicalName>symbols</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="DevExpress.Maui.Charts" Version="23.2.*" />
<PackageReference Include="DevExpress.Maui.CollectionView" Version="23.2.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Compile Update="Views\MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<MauiXaml Update="Themes\DarkTheme.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
</ItemGroup>
<PropertyGroup>
<RuntimeIdentifier Condition="$(TargetFramework.Contains('-ios'))">iossimulator-x64</RuntimeIdentifier>
<UseInterpreter Condition="$(TargetFramework.Contains('-android'))">False</UseInterpreter>
</PropertyGroup>
</Project>