RacingGame.csproj 1.0 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <SupportedOSPlatformVersion>12.2</SupportedOSPlatformVersion>
  6. <CodesignKey>iPhone Developer</CodesignKey>
  7. <RootNamespace>RacingGame</RootNamespace>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\Core\Core.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <MonoGameContentReference Include="..\Core\Content\RacingGameContent.mgcb">
  14. <Link>Content\RacingGameContent.mgcb</Link>
  15. <Platform>iOS</Platform>
  16. </MonoGameContentReference>
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.5-preview.3" />
  20. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.5-preview.3" />
  21. </ItemGroup>
  22. <Target Name="RestoreDotnetTools" BeforeTargets="CollectPackageReferences">
  23. <Message Text="Restoring dotnet tools..." Importance="High" />
  24. <Exec Command="dotnet tool restore" />
  25. </Target>
  26. </Project>