InABox.Avalonia.Platform.Android.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031
  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. <PackageReference Include="Plugin.BLE" Version="3.1.0" />
  24. </ItemGroup>
  25. </Project>