csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<NoWarn>$(NoWarn);AVP1012</NoWarn>
|
|
</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" />
|
|
</ItemGroup>
|
|
|
|
<ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\..\build\BuildTargets.targets" />
|
|
<Import Project="..\..\build\SampleApp.props" />
|
|
<Import Project="..\..\build\ReferenceCoreLibraries.props" />
|
|
|
|
</Project>
|
|
|