| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
- <Nullable>enable</Nullable>
- <NoWarn>$(NoWarn);AVP1012</NoWarn>
- <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
- </PropertyGroup>
- <PropertyGroup>
- <CFBundleName>IntegrationTestApp</CFBundleName>
- <CFBundleIdentifier>net.avaloniaui.avalonia.integrationtestapp</CFBundleIdentifier>
- <NSHighResolutionCapable>true</NSHighResolutionCapable>
- <CFBundleShortVersionString>1.0.0</CFBundleShortVersionString>
- </PropertyGroup>
-
- <ItemGroup>
- <AvaloniaResource Include="Assets\*" />
- </ItemGroup>
- <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" />
- <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
- <ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="TopmostWindowTest.axaml.cs">
- <DependentUpon>TopmostWindowTest.axaml</DependentUpon>
- </Compile>
- </ItemGroup>
-
- <Import Project="..\..\build\BuildTargets.targets" />
- <Import Project="..\..\build\SampleApp.props" />
- <Import Project="..\..\build\ReferenceCoreLibraries.props" />
- <Import Project="..\..\build\SourceGenerators.props" />
-
- </Project>
|