Phase 06 complete: - Namespace renamed in 62 .cs files (namespace + using directives) - AssemblyName + RootNamespace updated in csproj files - FanucProgramManager.csproj → NcProgramManager.csproj - FanucProgramManager.sln → NcProgramManager.sln - FanucProgramManager.Tests/ → NcProgramManager.Tests/ - FANUCMachine.cs deleted (dead code, zero references) Fanuc-prefixed class names kept (FanucMachine, FanucProgram, IFanucMachine) — manufacturer identifiers, not project names. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
241 B
C#
10 lines
241 B
C#
namespace NcProgramManager.Cnc.Heidenhain
|
|
{
|
|
internal interface ILsv2Client
|
|
{
|
|
bool Connect();
|
|
void Disconnect();
|
|
string ReceiveFile(string ncPath);
|
|
bool SendFile(string ncPath, string content);
|
|
}
|
|
}
|