-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigationGraph9Net9.csproj
More file actions
37 lines (32 loc) · 1.51 KB
/
NavigationGraph9Net9.csproj
File metadata and controls
37 lines (32 loc) · 1.51 KB
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
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-android35</TargetFramework>
<SupportedOSPlatformVersion>27</SupportedOSPlatformVersion>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<ApplicationId>com.companyname.NavigationGraph9Net9</ApplicationId>
<ApplicationVersion>12</ApplicationVersion>
<ApplicationDisplayVersion>1.2</ApplicationDisplayVersion>
<RootNamespace>com.companyname.navigationgraph9net9</RootNamespace>
<RuntimeIdentifiers Condition=" '$(Configuration)' == 'Release' ">android-arm;android-arm64</RuntimeIdentifiers>
</PropertyGroup>
<!--
Enable full trimming in Release mode.
To learn more, see: https://learn.microsoft.com/dotnet/core/deploying/trimming/trimming-options#trimming-granularity
-->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<TrimMode>full</TrimMode>
</PropertyGroup>
<ItemGroup>
<ProguardConfiguration Include="proguard.cfg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.7.1" />
<PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" Version="1.0.1.16" />
<PackageReference Include="Xamarin.AndroidX.Navigation.Fragment" Version="2.9.1" />
<PackageReference Include="Xamarin.AndroidX.Navigation.UI" Version="2.9.1" />
<PackageReference Include="Xamarin.AndroidX.Preference" Version="1.2.1.14" />
<PackageReference Include="Xamarin.AndroidX.Annotation" Version="1.9.1.4" />
</ItemGroup>
</Project>