InABox.Avalonia.Platform.Android.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-android</TargetFramework>
  4. <SupportedOSPlatformVersion>34</SupportedOSPlatformVersion>
  5. <TargetPlatformSdkRootOverride>34</TargetPlatformSdkRootOverride>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <LangVersion>default</LangVersion>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  11. <DefineConstants>TRACE;ANDROID</DefineConstants>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  14. <DefineConstants>TRACE;ANDROID</DefineConstants>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\..\..\..\development\inabox\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  18. <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="Avalonia" Version="11.2.3" />
  22. <PackageReference Include="bblanchon.PDFium.Android" Version="135.0.7009" />
  23. <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.93" />
  24. <PackageReference Include="PDFtoImage" Version="5.0.0" />
  25. </ItemGroup>
  26. </Project>