PRS.DigitalKey.Android.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-android</TargetFramework>
  5. <SupportedOSPlatformVersion>34</SupportedOSPlatformVersion>
  6. <TargetPlatformSdkRootOverride>34</TargetPlatformSdkRootOverride>
  7. <Nullable>enable</Nullable>
  8. <ApplicationId>com.CompanyName.PRS.DigitalKey</ApplicationId>
  9. <ApplicationVersion>1</ApplicationVersion>
  10. <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
  11. <AndroidPackageFormat>apk</AndroidPackageFormat>
  12. <AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
  13. <TargetPlatformIdentifier>android</TargetPlatformIdentifier>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  16. <AndroidLinkMode>None</AndroidLinkMode>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Avalonia.Android" Version="11.2.2" />
  20. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.2" />
  21. <PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" Version="1.0.1.14" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.Android\InABox.Avalonia.Platform.Android.csproj" />
  25. <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj"/>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <AndroidResource Include="Resources\drawable\Icon.png">
  29. <Link>Resources\drawable\Icon.png</Link>
  30. </AndroidResource>
  31. </ItemGroup>
  32. </Project>