- Console AssemblyVersion/AssemblyFileVersion 4.11.3.37076 -> 4.11.4.1. The
recovered console is no longer a byte-faithful copy of the original baseline;
it is the modernized 4.11.4.x line.
- Launcher Service + Agent Version -> 4.11.4.1 (unified suite version). The Agent
tray menu header now shows the running version ("Tesla Launcher Agent v4.11.4.1").
- Differential tests: the identity guard now expects the original at 4.11.3.37076
and the recovered at 4.11.4.1 (not identical); the public-member surface check
strips Version= stamps before comparing, since generic-argument signatures embed
the assembly version (we compare type names, not versions). 73 tests green.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Nullable>disable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<WarningsAsErrors></WarningsAsErrors>
|
|
<Version>4.11.4.1</Version>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<AssemblyName>TeslaLauncherAgent</AssemblyName>
|
|
<RootNamespace>Tesla.Launcher.Agent</RootNamespace>
|
|
<Platforms>x64</Platforms>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<SelfContained>true</SelfContained>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<StartupObject>Tesla.Launcher.Agent.AgentApplication</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Exclude service-only source files — they belong to TeslaLauncherService.csproj -->
|
|
<Compile Remove="TeslaLauncherService.cs" />
|
|
<Compile Remove="SecureConfig.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Required by SecureConfig.cs for COM2/PlasmaIO serial output -->
|
|
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|