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>
15 lines
472 B
C#
15 lines
472 B
C#
using System.CodeDom.Compiler;
|
|
using System.Configuration;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace TeslaConsole.Properties;
|
|
|
|
[CompilerGenerated]
|
|
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
|
|
internal sealed class Settings : ApplicationSettingsBase
|
|
{
|
|
private static Settings defaultInstance = (Settings)SettingsBase.Synchronized(new Settings());
|
|
|
|
public static Settings Default => defaultInstance;
|
|
}
|