IntegrationTestApp.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <NoWarn>$(NoWarn);AVP1012</NoWarn>
  7. <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <CFBundleName>IntegrationTestApp</CFBundleName>
  11. <CFBundleIdentifier>net.avaloniaui.avalonia.integrationtestapp</CFBundleIdentifier>
  12. <NSHighResolutionCapable>true</NSHighResolutionCapable>
  13. <CFBundleShortVersionString>1.0.0</CFBundleShortVersionString>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <AvaloniaResource Include="Assets\*" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Dotnet.Bundle" Version="0.9.13" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  23. <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
  24. <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
  25. <ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Compile Update="TopmostWindowTest.axaml.cs">
  29. <DependentUpon>TopmostWindowTest.axaml</DependentUpon>
  30. </Compile>
  31. </ItemGroup>
  32. <Import Project="..\..\build\BuildTargets.targets" />
  33. <Import Project="..\..\build\SampleApp.props" />
  34. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  35. <Import Project="..\..\build\SourceGenerators.props" />
  36. </Project>