mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
29 lines
882 B
XML
29 lines
882 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net6.0-android;net7.0-android</TargetFrameworks>
|
|
<RootNamespace>Examples.Android</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
|
|
<ApplicationId>com.raylibcs.android</ApplicationId>
|
|
<ApplicationVersion>1</ApplicationVersion>
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Raylib_cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
|
|
<ProjectReference Include="../Examples/Examples.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="../Raylib-cs/Build.props" />
|
|
|
|
</Project> |