123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFrameworks>net8.0-ios;net9.0-ios</TargetFrameworks>
- <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
- <Nullable>enable</Nullable>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
- <PublishTrimmed>True</PublishTrimmed>
- <IsTrimmable>True</IsTrimmable>
- <RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
- </PropertyGroup>
- <PropertyGroup>
-
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <CodesignKey>iPhone Developer</CodesignKey>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <CodesignKey>iPhone Distribution</CodesignKey>
- </PropertyGroup>
- <!-- <ItemGroup>-->
- <!-- <PackageReference Include="Avalonia" Version="11.2.5" />-->
- <!-- <PackageReference Include="Avalonia.Desktop" Version="11.2.5" />-->
- <!-- <PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.5" />-->
- <!-- <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.5" />-->
- <!-- <!–Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.–>-->
- <!-- <PackageReference Include="Avalonia.Diagnostics" Version="11.2.5">-->
- <!-- <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>-->
- <!-- <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>-->
- <!-- </PackageReference>-->
- <!-- </ItemGroup>-->
- <ItemGroup>
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.iOS\InABox.Avalonia.Platform.iOS.csproj" />
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
- <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.2" />
- <PackageReference Include="Avalonia.iOS" Version="11.2.2" />
- </ItemGroup>
- </Project>
|