| 1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <SupportedOSPlatformVersion>12.2</SupportedOSPlatformVersion>
- <CodesignKey>iPhone Developer</CodesignKey>
- <RootNamespace>RacingGame</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Core\Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\Core\Content\RacingGameContent.mgcb">
- <Link>Content\RacingGameContent.mgcb</Link>
- <Platform>iOS</Platform>
- </MonoGameContentReference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.5-preview.3" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.5-preview.3" />
- </ItemGroup>
- <Target Name="RestoreDotnetTools" BeforeTargets="CollectPackageReferences">
- <Message Text="Restoring dotnet tools..." Importance="High" />
- <Exec Command="dotnet tool restore" />
- </Target>
- </Project>
|