2023-07-25 23:15:55 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-11-13 01:23:58 +08:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-07-25 23:15:55 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
2024-11-13 01:14:34 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2023-07-25 23:15:55 +08:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
2024-11-13 01:23:58 +08:00
|
|
|
|
<!-- Uncomment below to enable Native AOT compilation-->
|
|
|
|
|
<!--<PublishAot>true</PublishAot>-->
|
|
|
|
|
<!--<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>-->
|
2023-07-25 23:15:55 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-10-04 14:51:05 +08:00
|
|
|
|
<Import Project="../Directory.Build.props" />
|
2024-11-13 01:14:34 +08:00
|
|
|
|
|
2023-07-25 23:15:55 +08:00
|
|
|
|
<ItemGroup>
|
2023-10-04 14:51:05 +08:00
|
|
|
|
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
|
2023-07-25 23:15:55 +08:00
|
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
2023-10-04 14:51:05 +08:00
|
|
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
|
2024-11-13 01:14:34 +08:00
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="$(CommunityToolkitVersion)" />
|
2023-07-25 23:15:55 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-13 01:14:34 +08:00
|
|
|
|
<ProjectReference Include="..\..\src\Semi.Avalonia.TreeDataGrid\Semi.Avalonia.TreeDataGrid.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\Semi.Avalonia\Semi.Avalonia.csproj" />
|
2023-07-25 23:15:55 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|