| 12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net7.0</TargetFramework>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup>
- <CFBundleName>IntegrationTestApp</CFBundleName>
- <CFBundleIdentifier>net.avaloniaui.avalonia.integrationtestapp</CFBundleIdentifier>
- <NSHighResolutionCapable>true</NSHighResolutionCapable>
- <CFBundleShortVersionString>1.0.0</CFBundleShortVersionString>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Dotnet.Bundle" Version="0.9.13" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
- </ItemGroup>
-
- <Import Project="..\..\build\BuildTargets.targets" />
- <Import Project="..\..\build\SampleApp.props" />
- <Import Project="..\..\build\ReferenceCoreLibraries.props" />
-
- </Project>
|