|
@@ -1,4 +1,5 @@
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
+
|
|
<PropertyGroup>
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<OutputType>Exe</OutputType>
|
|
<ProvisioningType>manual</ProvisioningType>
|
|
<ProvisioningType>manual</ProvisioningType>
|
|
@@ -7,15 +8,17 @@
|
|
<!-- To run this in the simulator, you need to use the x64 architecture,
|
|
<!-- To run this in the simulator, you need to use the x64 architecture,
|
|
since SkiaSharp only bundles native libraries for x64 for the tvOS Simulator -->
|
|
since SkiaSharp only bundles native libraries for x64 for the tvOS Simulator -->
|
|
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">tvossimulator-x64</RuntimeIdentifier>
|
|
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">tvossimulator-x64</RuntimeIdentifier>
|
|
|
|
+ <UseInterpreter>true</UseInterpreter>
|
|
</PropertyGroup>
|
|
</PropertyGroup>
|
|
|
|
+
|
|
<ItemGroup>
|
|
<ItemGroup>
|
|
- <ProjectReference Include="..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj" />
|
|
|
|
- <ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" />
|
|
|
|
- <None Include="Info.tvOS.plist">
|
|
|
|
- <LogicalName>Info.plist</LogicalName>
|
|
|
|
- </None>
|
|
|
|
|
|
+ <ProjectReference Include="../../src/iOS/Avalonia.iOS/Avalonia.iOS.csproj" />
|
|
|
|
+ <ProjectReference Include="../ControlCatalog/ControlCatalog.csproj" />
|
|
</ItemGroup>
|
|
</ItemGroup>
|
|
- <PropertyGroup>
|
|
|
|
- <UseInterpreter>true</UseInterpreter>
|
|
|
|
- </PropertyGroup>
|
|
|
|
|
|
+
|
|
|
|
+ <ItemGroup>
|
|
|
|
+ <Compile Include="../ControlCatalog.iOS/*.cs" />
|
|
|
|
+ <InterfaceDefinition Include="../ControlCatalog.iOS/Resources/*.xib" />
|
|
|
|
+ </ItemGroup>
|
|
|
|
+
|
|
</Project>
|
|
</Project>
|