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>
9 lines
142 B
C#
Executable file
9 lines
142 B
C#
Executable file
namespace NcProgramManager.Cnc.Fanuc
|
|
{
|
|
public enum FanucDialect
|
|
{
|
|
Unknown = 0,
|
|
Legacy = 1,
|
|
Modern = 2
|
|
}
|
|
}
|