2025-11-14 01:50:56 +00:00
<Project Sdk= "Uno.Sdk" >
2025-11-14 16:31:35 +00:00
<PropertyGroup >
<TargetFrameworks > net10.0-android;net10.0-browserwasm;net10.0-desktop</TargetFrameworks>
<TargetFrameworks Condition= "$([MSBuild]::IsOSPlatform('windows')) Or $([MSBuild]::IsOSPlatform('macos'))" > $(TargetFrameworks);net10.0-ios</TargetFrameworks>
2025-11-14 01:50:56 +00:00
2025-11-14 16:31:35 +00:00
<OutputType > Exe</OutputType>
<UnoSingleProject > true</UnoSingleProject>
2025-11-14 01:50:56 +00:00
2025-11-14 16:31:35 +00:00
<!-- Display name -->
<ApplicationTitle > Marechai.App</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId > net.marechai.app</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion > 1.0</ApplicationDisplayVersion>
<ApplicationVersion > 1</ApplicationVersion>
<!-- Package Publisher -->
<ApplicationPublisher > O=Marechai.App</ApplicationPublisher>
<!-- Package Description -->
<Description > Marechai.App powered by Uno Platform.</Description>
2025-11-14 01:50:56 +00:00
2025-11-14 16:31:35 +00:00
<!--
UnoFeatures let's you quickly add and manage implicit package references based on the features you want to use.
https://aka.platform.uno/singleproject-features
-->
<UnoFeatures >
Lottie;
Hosting;
Toolkit;
Logging;
LoggingSerilog;
Mvvm;
Configuration;
HttpKiota;
Serialization;
Localization;
Navigation;
ThemeService;
SkiaRenderer;
2025-11-15 15:26:47 +00:00
Svg;
2025-11-14 16:31:35 +00:00
</UnoFeatures>
</PropertyGroup>
<ItemGroup >
<ProjectReference Include= "..\Marechai.Data\Marechai.Data.csproj" />
</ItemGroup>
2025-11-15 02:38:47 +00:00
<ItemGroup >
<PackageReference Include= "Humanizer" />
</ItemGroup>
2025-11-15 02:46:54 +00:00
<ItemGroup >
<Compile Update= "Presentation\Views\Shell.xaml.cs" >
<DependentUpon > Shell.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Views\SecondPage.xaml.cs" >
<DependentUpon > SecondPage.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Views\ComputersPage.xaml.cs" >
<DependentUpon > ComputersPage.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Views\MainPage.xaml.cs" >
<DependentUpon > MainPage.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Views\ComputersListPage.xaml.cs" >
<DependentUpon > ComputersListPage.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Views\NewsPage.xaml.cs" >
<DependentUpon > NewsPage.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Views\MachineViewPage.xaml.cs" >
<DependentUpon > MachineViewPage.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
<Compile Update= "Presentation\Components\Sidebar.xaml.cs" >
<DependentUpon > Sidebar.xaml</DependentUpon>
<IsDefaultItem > true</IsDefaultItem>
</Compile>
</ItemGroup>
2025-11-14 01:50:56 +00:00
</Project>