2026-03-27 19:00:26 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2026-04-10 02:19:50 -05:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2026-03-27 19:00:26 -04:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
<!-- Avalonia compiled bindings require this -->
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="coverlet.collector">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Avalonia.Headless" />
|
|
|
|
|
<PackageReference Include="Avalonia.Headless.XUnit" />
|
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-06-06 05:49:24 -05:00
|
|
|
<ProjectReference Include="..\LANCommander.Launcher\LANCommander.Launcher.csproj" />
|
2026-03-27 19:00:26 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Baseline images are committed to source and copied to output for tests to load -->
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Baselines\**\*.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|