Finished Settings page

This commit is contained in:
2025-11-12 17:06:14 +01:00
parent a608f98497
commit e0bf95060a
38 changed files with 675 additions and 34 deletions

View File

@@ -19,10 +19,10 @@
<Nullable>enable</Nullable>
<!-- Display name -->
<ApplicationTitle>WorkTime.Mobile</ApplicationTitle>
<ApplicationTitle>Zeiterfassung</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.worktime.mobile</ApplicationId>
<ApplicationId>de.leon-hoppe.worktime</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
@@ -36,18 +36,19 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4"/>
<MauiIcon Include="Resources\AppIcon\appicon.png" ForegroundFile="Resources\AppIcon\appiconfg.png" Color="#FFFFFF"/>
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128"/>
<MauiSplashScreen Include="Resources\Splash\splash.png" Color="#FFFFFF" BaseSize="128,128"/>
<!-- Images -->
<MauiImage Include="Resources\Images\*"/>
<MauiImage Update="Resources\Images\dotnet_bot.png" Resize="True" BaseSize="300,185"/>
<MauiImage Update="Resources\Images\dotnet_bot.png" Resize="True" BaseSize="512,512"/>
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*"/>
@@ -57,9 +58,17 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="AathifMahir.Maui.MauiIcons.Material" Version="5.0.0" />
<PackageReference Include="CommunityToolkit.Maui" Version="12.3.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)"/>
<PackageReference Include="Microsoft.Maui.Essentials" Version="$(MauiVersion)"/>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WorkTime.Database\WorkTime.Database.csproj" />
<ProjectReference Include="..\WorkTime.Models\WorkTime.Models.csproj" />
</ItemGroup>
</Project>