| 12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-ios</TargetFramework>
- <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
- <Nullable>enable</Nullable>
- <PublishTrimmed>True</PublishTrimmed>
- <IsTrimmable>True</IsTrimmable>
- <OutputType>Exe</OutputType>
- <RuntimeIdentifiers>ios-arm64;iossimulator-x64</RuntimeIdentifiers>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <CodesignKey>iPhone Developer</CodesignKey>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <CodesignKey>iPhone Distribution</CodesignKey>
- </PropertyGroup>
- <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.Avalonia\PRS.Avalonia.csproj"/>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.iOS" Version="11.2.2" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Assets.xcassets\" />
- </ItemGroup>
-
- </Project>
|