| 12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-android</TargetFramework>
- <SupportedOSPlatformVersion>23</SupportedOSPlatformVersion>
- <OutputType>Exe</OutputType>
- <ApplicationId>com.companyname.FuelCell.Android</ApplicationId>
- <ApplicationVersion>1</ApplicationVersion>
- <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
- </PropertyGroup>
- <ItemGroup>
- <AndroidResource Include="Resources\Drawable\Splash.png" />
- <AndroidResource Include="Resources\Values\Styles.xml" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\FuelCell.Core\Content\FuelCell.mgcb" Link="Content\FuelCell.mgcb" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\FuelCell.Core\FuelCell.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.4.1" />
- <PackageReference Include="MonoGame.Framework.Android" Version="3.8.4.1" />
- </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>
|