| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0-android</TargetFramework>
- <SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
- <OutputType>Exe</OutputType>
- <Nullable>enable</Nullable>
- <ApplicationId>com.Avalonia.AndroidTestApplication</ApplicationId>
- <ApplicationVersion>1</ApplicationVersion>
- <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
- <AndroidPackageFormat>apk</AndroidPackageFormat>
- <MSBuildEnableWorkloadResolver>true</MSBuildEnableWorkloadResolver>
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <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>True</RunAOTCompilation>
- <EnableLLVM>True</EnableLLVM>
- <AndroidEnableProfiledAot>True</AndroidEnableProfiledAot>
- </PropertyGroup>
-
- <ItemGroup>
- <None Remove="Assets\AboutAssets.txt" />
- </ItemGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <BundleAssemblies>True</BundleAssemblies>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <BundleAssemblies>True</BundleAssemblies>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj" />
- <ProjectReference Include="..\Avalonia.Android\Avalonia.Android.csproj" />
- </ItemGroup>
- </Project>
|