2026-04-04 13:30:13 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2026-04-04 15:36:30 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
2026-04-04 13:30:13 +02:00
|
|
|
|
2026-04-04 15:36:30 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="11.3.13" />
|
|
|
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.3.13" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.3.13" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.13" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Simple" Version="11.3.13" />
|
2026-04-04 13:30:13 +02:00
|
|
|
|
2026-04-04 15:36:30 +02:00
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
|
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.13" />
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.5" />
|
|
|
|
|
<PackageReference Include="MessageBox.Avalonia" Version="3.3.1.1" />
|
|
|
|
|
</ItemGroup>
|
2026-04-04 13:30:13 +02:00
|
|
|
|
2026-04-04 15:36:30 +02:00
|
|
|
<ItemGroup>
|
2026-04-05 10:13:12 +02:00
|
|
|
<ProjectReference Include="..\..\Serilog.Sinks.LogView.Core\Serilog.Sinks.LogView.Core.csproj" />
|
2026-04-04 15:36:30 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="LogViewerControl.axaml.cs">
|
|
|
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2026-04-04 13:30:13 +02:00
|
|
|
|
|
|
|
|
</Project>
|