-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathAndroid.csproj
More file actions
24 lines (24 loc) · 973 Bytes
/
Android.csproj
File metadata and controls
24 lines (24 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0-android</TargetFramework>
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
<ApplicationId>com.companyname.Platformer2D</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<AssemblyName>Platformer2D</AssemblyName>
<AssemblyTitle>Platformer2D</AssemblyTitle>
</PropertyGroup>
<ItemGroup>
<MonoGameContentReference Include="..\Core\Content\Platformer2D.mgcb">
<Link>Content\Platformer2D.mgcb</Link>
</MonoGameContentReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.5-preview.*" />
<PackageReference Include="MonoGame.Framework.Android" Version="3.8.5-preview.*" />
</ItemGroup>
</Project>