InABox.Avalonia.Platform.iOS.csproj 1.0 KB

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