1
0

ControlCatalog.tvOS.csproj 983 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <ProvisioningType>manual</ProvisioningType>
  5. <TargetFramework>$(AvsCurrentTvOSTargetFramework)</TargetFramework>
  6. <SupportedOSPlatformVersion>$(AvsMinSupportedTvOSVersion)</SupportedOSPlatformVersion>
  7. <!-- To run this in the simulator, you need to use the x64 architecture,
  8. since SkiaSharp only bundles native libraries for x64 for the tvOS Simulator -->
  9. <RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">tvossimulator-x64</RuntimeIdentifier>
  10. <UseInterpreter>true</UseInterpreter>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="../../src/iOS/Avalonia.iOS/Avalonia.iOS.csproj" />
  14. <ProjectReference Include="../ControlCatalog/ControlCatalog.csproj" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Compile Include="../ControlCatalog.iOS/*.cs" />
  18. <InterfaceDefinition Include="../ControlCatalog.iOS/Resources/*.xib" />
  19. </ItemGroup>
  20. </Project>