InABox.Avalonia.Platform.Android.csproj 1.1 KB

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