-
Notifications
You must be signed in to change notification settings - Fork 0
/
PerfAndroid.csproj
34 lines (32 loc) · 1.47 KB
/
PerfAndroid.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationId>com.companyname.PerfAndroid</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<RunAOTCompilation>true</RunAOTCompilation>
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="Resources\**\*.xml"/>
<Reference Include="MugenMvvm">
<HintPath>..\libs\android\MugenMvvm.dll</HintPath>
</Reference>
<Reference Include="MugenMvvm.Android">
<HintPath>..\libs\android\MugenMvvm.Android.dll</HintPath>
</Reference>
<Analyzer Include="..\libs\android\MugenMvvm.BindingGenerator.dll" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
<Reference Include="MugenMvvm.CompositeUI">
<HintPath>..\libs\android\MugenMvvm.CompositeUI.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PerfCore\PerfCore.csproj"/>
<PackageReference Include="Xamarin.AndroidX.RecyclerView" Version="1.3.2.6"/>
</ItemGroup>
</Project>