mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
62 lines
2.6 KiB
XML
62 lines
2.6 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<LangVersion>8.0</LangVersion>
|
|
<OutputPath>bin\$(Configuration)</OutputPath>
|
|
<WarningLevel>4</WarningLevel>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<BundleAssemblies>false</BundleAssemblies>
|
|
<AotAssemblies>false</AotAssemblies>
|
|
<OutputType>Library</OutputType>
|
|
<FileAlignment>512</FileAlignment>
|
|
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
|
<AndroidApplication>True</AndroidApplication>
|
|
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
|
|
<TargetFrameworkVersion>v10.0</TargetFrameworkVersion>
|
|
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AndroidSupportedAbis>armeabi-v7a;x86;arm64-v8a</AndroidSupportedAbis>
|
|
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
|
|
<MandroidI18n>cjk,mideast,other,rare,west</MandroidI18n>
|
|
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>False</Optimize>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<AndroidManagedSymbols>false</AndroidManagedSymbols>
|
|
<AndroidUseSharedRuntime>true</AndroidUseSharedRuntime>
|
|
<EmbedAssembliesIntoApk>false</EmbedAssembliesIntoApk>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>None</DebugType>
|
|
<Optimize>True</Optimize>
|
|
<AndroidManagedSymbols>false</AndroidManagedSymbols>
|
|
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
|
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="$(MSBuildThisFileDirectory)\osu.licenseheader">
|
|
<Link>osu.licenseheader</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="Mono.Android" />
|
|
<Reference Include="Java.Interop" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2022.1008.0" />
|
|
<PackageReference Include="ppy.osu.Framework.Android" Version="2022.1011.0" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Transitive Dependencies">
|
|
<!-- Realm needs to be directly referenced in all Xamarin projects, as it will not pull in its transitive dependencies otherwise. -->
|
|
<PackageReference Include="Realm" Version="10.17.0" />
|
|
</ItemGroup>
|
|
</Project>
|