IntegrationTestApp.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
  5. <NoWarn>$(NoWarn);AVP1012;AVLN3001</NoWarn>
  6. <ApplicationManifest>app.manifest</ApplicationManifest>
  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. <PackageReference Include="MonoMac.NetStandard" Version="0.0.4" />
  21. </ItemGroup>
  22. <ItemGroup>
  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. <Import Project="..\..\build\BuildTargets.targets" />
  28. <Import Project="..\..\build\SampleApp.props" />
  29. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  30. <Import Project="..\..\build\SourceGenerators.props" />
  31. </Project>