Avalonia.AndroidTestApplication.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0-android</TargetFramework>
  4. <SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
  5. <OutputType>Exe</OutputType>
  6. <Nullable>enable</Nullable>
  7. <ApplicationId>com.Avalonia.AndroidTestApplication</ApplicationId>
  8. <ApplicationVersion>1</ApplicationVersion>
  9. <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
  10. <AndroidPackageFormat>apk</AndroidPackageFormat>
  11. <MSBuildEnableWorkloadResolver>true</MSBuildEnableWorkloadResolver>
  12. <DebugType>portable</DebugType>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <AndroidResource Include="..\..\..\build\Assets\Icon.png">
  16. <Link>Resources\drawable\Icon.png</Link>
  17. </AndroidResource>
  18. </ItemGroup>
  19. <PropertyGroup Condition="'$(Configuration)'=='Release' and '$(TF_BUILD)' == ''">
  20. <DebugSymbols>True</DebugSymbols>
  21. <RunAOTCompilation>True</RunAOTCompilation>
  22. <EnableLLVM>True</EnableLLVM>
  23. <AndroidEnableProfiledAot>True</AndroidEnableProfiledAot>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <None Remove="Assets\AboutAssets.txt" />
  27. </ItemGroup>
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  29. <BundleAssemblies>True</BundleAssemblies>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  32. <BundleAssemblies>True</BundleAssemblies>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj" />
  36. <ProjectReference Include="..\Avalonia.Android\Avalonia.Android.csproj" />
  37. </ItemGroup>
  38. </Project>