PRS.DigitalKey.iOS.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-ios</TargetFramework>
  5. <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
  6. <Nullable>enable</Nullable>
  7. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  8. <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Avalonia" Version="11.2.3" />
  14. <PackageReference Include="Avalonia.Desktop" Version="11.2.3" />
  15. <PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.3" />
  16. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.3" />
  17. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  18. <PackageReference Include="Avalonia.Diagnostics" Version="11.2.3">
  19. <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
  20. <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
  21. </PackageReference>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.iOS\InABox.Avalonia.Platform.iOS.csproj" />
  25. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  26. <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj" />
  27. </ItemGroup>
  28. </Project>