native-android-csharp/DemoAndroid/DemoAndroid.csproj

21 lines
851 B
XML
Raw Normal View History

2024-06-19 13:37:29 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
2024-06-19 17:02:44 +00:00
<SupportedOSPlatformVersion>30</SupportedOSPlatformVersion>
2024-06-19 13:37:29 +00:00
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationId>com.maurict.androiddemo</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<!-- With AOT, our app is crashing in Release mode -->
2024-06-19 14:16:38 +00:00
<RunAOTCompilation>False</RunAOTCompilation>
<PublishAot>False</PublishAot>
2024-06-19 17:02:44 +00:00
<TargetFrameworkVersion>v13.0</TargetFrameworkVersion>
2024-06-19 13:37:29 +00:00
</PropertyGroup>
2024-06-19 14:42:19 +00:00
2024-06-19 13:37:29 +00:00
<ItemGroup>
<PackageReference Include="QRCoder-ImageSharp" Version="0.10.0" />
</ItemGroup>
</Project>