This commit includes significant updates to the application, focusing on configuration changes, UI enhancements, and new features: - Updated `appsettings.json` to change the database name and add a new connection string for encryption. - Modified `launchSettings.json` to allow the application to listen on all network interfaces. - Introduced new image assets and SVG icons to improve visual elements. - Added `UserPreferencesService` to manage user acceptance of terms and conditions. - Expanded `OnboardingViewModel` to manage onboarding steps and user interactions. - Created new popup ViewModels for managing user agreements and subscription offers. - Restructured various XAML files to improve layout consistency and data binding. - Updated project files to reflect version changes and improve organization. - Introduced a new `SubscriptionModel` class to manage subscription data in the UI. Overall, these changes enhance the application's structure, usability, and responsiveness.
58 lines
2.8 KiB
XML
58 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Pin the MAUI version -->
|
|
<!--<MauiVersion>7.0.59</MauiVersion>-->
|
|
|
|
<TargetFrameworks>net8.0;net8.0-android;net8.0-ios</TargetFrameworks>
|
|
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
|
|
<!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
|
|
<UseMaui>true</UseMaui>
|
|
<SingleProject>true</SingleProject>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
|
|
<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>
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
|
|
<Configurations>Debug;Release;Staging;DebugStaging</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.12" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.100" />
|
|
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.100" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\gehGassi\gehGassi.Dto\gehGassi.Dto.csproj" />
|
|
<ProjectReference Include="..\gehGassiApp.Domain\gehGassiApp.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Resources\Errors.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Errors.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Resources\Errors.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Errors.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="MockupServices\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|