InABox.Avalonia.Platform.Android.csproj 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-android</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <RootNamespace>InABox.Avalonia.Platform.Android</RootNamespace>
  7. <LangVersion>default</LangVersion>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  10. <DefineConstants>TRACE;ANDROID</DefineConstants>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  13. <DefineConstants>TRACE;ANDROID</DefineConstants>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\..\..\..\development\inabox\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  17. <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Avalonia" Version="11.2.3" />
  21. <PackageReference Include="Microsoft.Maui.Essentials" />
  22. </ItemGroup>
  23. </Project>