csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.7 KiB
46 lines
1.7 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-android</TargetFramework>
|
|
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
|
|
<OutputType>Exe</OutputType>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationId>com.Avalonia.ControlCatalog</ApplicationId>
|
|
<ApplicationVersion>1</ApplicationVersion>
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
<MSBuildEnableWorkloadResolver>true</MSBuildEnableWorkloadResolver>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="Assets\AboutAssets.txt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AndroidResource Include="..\..\build\Assets\Icon.png">
|
|
<Link>Resources\drawable\Icon.png</Link>
|
|
</AndroidResource>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release' and '$(TF_BUILD)' == ''">
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<RunAOTCompilation>False</RunAOTCompilation>
|
|
<EnableLLVM>True</EnableLLVM>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk>
|
|
<RunAOTCompilation>False</RunAOTCompilation>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.3.1.3" />
|
|
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModel" Version="2.3.1.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Android\Avalonia.Android\Avalonia.Android.csproj" />
|
|
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|