| 123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0-ios</TargetFramework>
- <RootNamespace>StencilCratersTutorial.iOS</RootNamespace>
- <AssemblyName>StencilCraters.iOS</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <MonoGamePlatform>iOS</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\StencilCraters.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- <Target Name="RestoreDotnetTools" BeforeTargets="CollectPackageReferences">
- <Message Text="Restoring dotnet tools (this might take a while depending on your internet speed and should only happen upon building your project for the first time, or after upgrading MonoGame, or clearing your nuget cache)" Importance="High" />
- <Exec Command="dotnet tool restore" />
- </Target>
- </Project>
|