openclaw-windows-node/tests/Directory.Build.props
Chris Anderson 9fa43f3477
feat: add native WinUI A2UI renderer and MCP hardening (#239)
Adds the native WinUI A2UI rendering pipeline, MCP/local security hardening, navigation/media safeguards, and integration/UI coverage for tray-hosted A2UI surfaces.\n\nThanks to @codemonkeychris for the substantial implementation and follow-through on review feedback.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-29 22:53:50 -07:00

34 lines
1.1 KiB
XML

<Project>
<!--
Shared configuration for all test projects under tests/.
Individual projects only need to declare their <ProjectReference>.
-->
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<!--
Coverage is collected via the `dotnet-coverage` global tool, NOT coverlet.
OpenClaw.Tray.IntegrationTests spawns the tray exe out-of-process; coverlet's
in-proc instrumentation cannot capture coverage from spawned children, while
dotnet-coverage uses a runtime profiler that does. CI installs the tool and
wraps each `dotnet test` invocation with `dotnet-coverage collect`.
-->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
</Project>