The previous T7 commit (dc722e7) and the housekeeping commit (3e6f6ec) together left the file in the tree with a <Compile Remove> guard in the csproj. Per spec O-T7 and CLAUDE.md "no workarounds without approval" the file was supposed to be git-rm'd outright. This commit: - git rm tests/AcDream.Core.Tests/Terrain/SplitFormulaDivergenceTest.cs (the one-time N.5b data-collection sweep — job done at Phase N.5b ship) - Removes the now-unneeded <Compile Remove> guard from tests/AcDream.Core.Tests/AcDream.Core.Tests.csproj Build green; tests green (1146 + 8 pre-existing failures baseline maintained). Spec: docs/superpowers/specs/2026-05-21-phase-o-dat-path-unification-design.md Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
35 lines
No EOL
1.2 KiB
XML
35 lines
No EOL
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\AcDream.Core\AcDream.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\AcDream.App\AcDream.App.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Build ordering only — do NOT reference at runtime. The tests locate the
|
|
fixture DLL by path and load it into a separate ALC. -->
|
|
<ProjectReference Include="..\AcDream.Core.Tests.Fixtures.HelloPlugin\AcDream.Core.Tests.Fixtures.HelloPlugin.csproj">
|
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
<SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
</Project> |