IntegrationTestApp.csproj 1.5 KB

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