Files
TeslaSuite/Console/tests/TeslaConsole.DiffTests/TeslaConsole.DiffTests.csproj
T
CydandClaude Opus 4.8 548550b312 Initial commit: TeslaSuite monorepo (TeslaConsole + TeslaLauncher)
Co-locate the two cockpit-pod projects into a single repository:

- Console/  : TeslaConsole, the net48 WinForms operator console (decompiled
              reconstruction) plus its differential + catalog test suite.
- Launcher/ : TeslaLauncher, the net6 pod-side Service + Agent rewrite.

Adds a combined TeslaSuite.sln, root README documenting the shared wire
contract (and its current duplication, the main follow-up), and a root
.gitignore. Histories were not preserved per request; this is a fresh start
from the current working state of both projects.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 14:43:28 -05:00

47 lines
1.8 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<!--
Differential test suite: verifies the reconstructed TeslaConsole.exe behaves
identically to the original (reference baseline in ../../original).
Targets net48 on purpose: the comparison loads BOTH assemblies (which share
the exact same assembly identity, TeslaConsole 4.11.3.37076) into separate
AppDomains, which only the .NET Framework runtime supports.
-->
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<IsPackable>false</IsPackable>
<AssemblyName>TeslaConsole.DiffTests</AssemblyName>
<RootNamespace>TeslaConsole.DiffTests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- net48 reference assemblies so this builds without a full targeting pack installed -->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<!--
Build the reconstruction before the tests so we always compare against a fresh
build. ReferenceOutputAssembly=false: we load it by path via reflection, and
copying it next to the tests would collide with the original's identical identity.
-->
<ProjectReference Include="..\..\TeslaConsole.csproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<Private>false</Private>
</ProjectReference>
</ItemGroup>
</Project>