| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-ios</TargetFramework>
- <RootNamespace>GameComponents.iOS</RootNamespace>
- <AssemblyName>GameComponents.iOS</AssemblyName>
- <OutputType>Exe</OutputType>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\GameComponents.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\CompiledContent\iOS\Content\Textures\logo.xnb" Link="Content\logo.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\iOS\Content\Fonts\Arial.xnb" Link="Content\Font.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|