2026-05-29 01:29:36 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net10.0-android</TargetFramework>
|
2026-06-07 08:19:58 +01:00
|
|
|
<!-- FORCE LES ARCHITECTURES ANDROID VALIDES -->
|
|
|
|
|
<RuntimeIdentifiers>android-arm64;android-x64</RuntimeIdentifiers>
|
2026-05-30 15:41:59 +01:00
|
|
|
<SupportedOSPlatformVersion>23.0.0</SupportedOSPlatformVersion>
|
2026-05-29 01:29:36 +01:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ApplicationId>com.CompanyName.PostIt</ApplicationId>
|
|
|
|
|
<ApplicationVersion>1</ApplicationVersion>
|
|
|
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
|
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
|
|
|
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
|
2026-06-07 09:11:40 +01:00
|
|
|
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
|
2026-08-18 17:20:59 +01:00
|
|
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.1.0.0</FileVersion>
|
2026-08-18 19:18:36 +01:00
|
|
|
<InformationalVersion>1.1.0-beta.1+1.Branch.release-1.0.8-rc1.Sha.1167169aa89e1bf25290e9a152d27b357a500ab3</InformationalVersion>
|
2026-08-18 17:20:59 +01:00
|
|
|
<Version>1.1.0-beta.1</Version>
|
2026-05-29 01:29:36 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AndroidResource Include="Icon.png">
|
|
|
|
|
<Link>Resources\drawable\Icon.png</Link>
|
|
|
|
|
</AndroidResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia.Android" />
|
|
|
|
|
<PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" />
|
2026-06-20 17:26:13 +01:00
|
|
|
<PackageReference Include="Xamarin.AndroidX.Browser" />
|
2026-05-29 01:29:36 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PostIt\PostIt.csproj" />
|
|
|
|
|
</ItemGroup>
|
2026-06-28 14:11:26 +01:00
|
|
|
<ItemGroup>
|
2026-08-19 14:09:31 +01:00
|
|
|
<PackageReference Include="Microsoft.Maui.Essentials" />
|
2026-06-28 14:11:26 +01:00
|
|
|
</ItemGroup>
|
2026-08-19 14:09:31 +01:00
|
|
|
</Project>
|