InABox.Avalonia.Platform.iOS.csproj 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net8.0-ios;net9.0-ios</TargetFrameworks>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <RootNamespace>InABox.Avalonia.Platform.iOS</RootNamespace>
  7. <Configurations>Debug;Release;Publish</Configurations>
  8. <Platforms>AnyCPU</Platforms>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  11. <DefineConstants>TRACE;IOS</DefineConstants>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  14. <DefineConstants>TRACE;IOS</DefineConstants>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Avalonia" Version="11.3.2" />
  21. <PackageReference Include="Microsoft.Maui.Essentials" Version="9.0.90" />
  22. <PackageReference Include="Plugin.BLE" Version="3.1.0" />
  23. </ItemGroup>
  24. </Project>