InABox.Avalonia.Platform.iOS.csproj 1.0 KB

1234567891011121314151617181920212223242526272829
  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. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  9. <DefineConstants>TRACE;IOS</DefineConstants>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  12. <DefineConstants>TRACE;IOS</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <PackageReference Include="Avalonia" Version="11.2.2" />
  19. <PackageReference Include="Microsoft.Maui.Essentials" Version="9.0.71" />
  20. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  21. <PackageReference Include="Plugin.BLE" Version="3.1.0" />
  22. </ItemGroup>
  23. </Project>