mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
* PM-6539 Fix Autofill Extension TDE without MP updating PromptSSO to work in MAUI and also Generator view. WebAuthenticator copied with UIWindow gotten as it was in Xamarin forms to work. Also fix one NRE on state migration. * PM-6539 Remove unnecessary using
113 lines
5.8 KiB
XML
113 lines
5.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!--When running Unit tests we'll have the custom constant "UT" added, so in this manner we can add the net8.0 target we need for UT -->
|
|
<TargetFrameworks Condition="$(CustomConstants.Contains(UT))">net8.0;net8.0-android;net8.0-ios</TargetFrameworks>
|
|
<TargetFrameworks Condition="!$(CustomConstants.Contains(UT))">net8.0-android;net8.0-ios</TargetFrameworks>
|
|
<RootNamespace>Bit.Core</RootNamespace>
|
|
|
|
<UseMaui>true</UseMaui>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-ios|AnyCPU'">
|
|
<CreatePackage>false</CreatePackage>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-ios|AnyCPU'">
|
|
<CreatePackage>false</CreatePackage>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<DefineConstants Condition=" '$(CustomConstants)' != '' ">$(DefineConstants);$(CustomConstants)</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\eff_long_word_list.txt" />
|
|
<EmbeddedResource Include="Resources\public_suffix_list.dat" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Camera.MAUI" Version="1.4.4" />
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
|
|
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="MessagePack" Version="2.5.124" />
|
|
<PackageReference Include="CsvHelper" Version="30.0.1" />
|
|
<PackageReference Include="LiteDB" Version="5.0.17" />
|
|
<PackageReference Include="PCLCrypto" Version="2.1.40-alpha" />
|
|
<PackageReference Include="zxcvbn-core" Version="7.0.92" />
|
|
<PackageReference Include="MessagePack.MSBuild.Tasks" Version="2.5.124">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="CommunityToolkit.Maui" Version="5.2.0" />
|
|
<PackageReference Include="Plugin.Fingerprint" Version="3.0.0-beta.1" />
|
|
<PackageReference Include="SkiaSharp.Views.Maui.Controls" Version="2.88.4-preview.84" />
|
|
<PackageReference Include="SkiaSharp.Views.Maui.Controls.Compatibility" Version="2.88.4-preview.84" />
|
|
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="6.0.6" />
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
|
|
<!-- HACK: When running Unit Tests we cannot load FFImageLoading because it doesn't support "raw" net8.0 -->
|
|
<PackageReference Condition="!$(CustomConstants.Contains(UT))" Include="FFImageLoadingCompat.Maui" Version="0.1.1" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">
|
|
<PackageReference Include="Xamarin.AndroidX.AutoFill" Version="1.1.0.18" />
|
|
<PackageReference Include="Xamarin.AndroidX.Activity.Ktx" Version="1.7.2.1" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android' AND !$(DefineConstants.Contains(FDROID))">
|
|
<PackageReference Include="Xamarin.GooglePlayServices.SafetyNet" Version="118.0.1.5" />
|
|
<PackageReference Include="Xamarin.Firebase.Messaging" Version="123.1.2.2" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="!$(DefineConstants.Contains(FDROID))">
|
|
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.3" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Services\Logging\" />
|
|
<Folder Include="Attributes\" />
|
|
<Folder Include="Services\EmailForwarders\" />
|
|
<Folder Include="Resources\Fonts\" />
|
|
<Folder Include="Effects\" />
|
|
<Folder Include="Resources\Raw\" />
|
|
<Folder Include="Behaviors\" />
|
|
<Folder Include="Controls\" />
|
|
<Folder Include="Lists\" />
|
|
<Folder Include="Resources\Styles\" />
|
|
<Folder Include="Utilities\AccountManagement\" />
|
|
<Folder Include="Utilities\Automation\" />
|
|
<Folder Include="Utilities\Prompts\" />
|
|
<Folder Include="Resources\Localization\" />
|
|
<Folder Include="Controls\Picker\" />
|
|
<Folder Include="Controls\Avatar\" />
|
|
<Folder Include="Utilities\WebAuthenticatorMAUI\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<MauiImage Include="Resources\Images\dotnet_bot.svg">
|
|
<BaseSize>168,208</BaseSize>
|
|
</MauiImage>
|
|
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
|
<MauiFont Include="Resources\Fonts\*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Resources\Localization\AppResources.resx">
|
|
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
</EmbeddedResource>
|
|
<Compile Update="Pages\AndroidNavigationRedirectPage.xaml.cs">
|
|
<DependentUpon>AndroidNavigationRedirectPage.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Resources\Localization\AppResources.Designer.cs">
|
|
<DependentUpon>AppResources.resx</DependentUpon>
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<MauiXaml Update="Pages\AndroidNavigationRedirectPage.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</MauiXaml>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="Controls\Picker\" />
|
|
<None Remove="Controls\Avatar\" />
|
|
<None Remove="Utilities\WebAuthenticatorMAUI\" />
|
|
</ItemGroup>
|
|
</Project> |