IntegrationTestApp.csproj 1.1 KB

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