native-android-csharp/DemoAndroid/DemoAndroid.csproj
2024-06-19 19:02:44 +02:00

21 lines
851 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
<SupportedOSPlatformVersion>30</SupportedOSPlatformVersion>
<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 -->
<RunAOTCompilation>False</RunAOTCompilation>
<PublishAot>False</PublishAot>
<TargetFrameworkVersion>v13.0</TargetFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="QRCoder-ImageSharp" Version="0.10.0" />
</ItemGroup>
</Project>