123456789101112131415161718192021222324252627282930313233343536373839 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
- <Nullable>enable</Nullable>
- <NoWarn>$(NoWarn);AVP1012;AVLN3001</NoWarn>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <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" />
- <PackageReference Include="MonoMac.NetStandard" Version="0.0.4" />
- </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>
- <Import Project="..\..\build\BuildTargets.targets" />
- <Import Project="..\..\build\SampleApp.props" />
- <Import Project="..\..\build\ReferenceCoreLibraries.props" />
- <Import Project="..\..\build\SourceGenerators.props" />
-
- </Project>
|