IntegrationTestApp.csproj 999 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <CFBundleName>IntegrationTestApp</CFBundleName>
  9. <CFBundleIdentifier>net.avaloniaui.avalonia.integrationtestapp</CFBundleIdentifier>
  10. <NSHighResolutionCapable>true</NSHighResolutionCapable>
  11. <CFBundleShortVersionString>1.0.0</CFBundleShortVersionString>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Dotnet.Bundle" Version="0.9.13" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  18. <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
  19. </ItemGroup>
  20. <Import Project="..\..\build\BuildTargets.targets" />
  21. <Import Project="..\..\build\SampleApp.props" />
  22. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  23. </Project>