mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-19 06:33:24 +08:00
24 lines
946 B
XML
24 lines
946 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0-android</TargetFramework>
|
|
<SupportedOSPlatformVersion>24</SupportedOSPlatformVersion>
|
|
<OutputType>Exe</OutputType>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<ApplicationId>org.lanmountain.desktop</ApplicationId>
|
|
<ApplicationVersion>1</ApplicationVersion>
|
|
<ApplicationDisplayVersion>0.0.0-dev</ApplicationDisplayVersion>
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LanMountainDesktop.Mobile\LanMountainDesktop.Mobile.csproj" />
|
|
<ProjectReference Include="..\..\platform\LanMountainDesktop.Platform\LanMountainDesktop.Platform.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia.Android" />
|
|
</ItemGroup>
|
|
</Project>
|