17 lines
495 B
XML
17 lines
495 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0-ios</TargetFramework>
|
|||
|
<SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Avalonia.iOS"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\AvaloniaApplication1\AvaloniaApplication1.csproj"/>
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|