Replace AES checkLicense with MachineFingerprint+LicenseFile+LicenseValidator. License.lic hardcoded next to EXE; -chiave= CLI arg and InputArgs.chiave removed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
822 B
C#
Executable file
24 lines
822 B
C#
Executable file
using NcProgramManager.Cnc.Models;
|
|
|
|
namespace NcProgramManager
|
|
{
|
|
internal class InputArgs
|
|
{
|
|
public CncManufacturer manufacturer = CncManufacturer.Fanuc;
|
|
public int tipo = 0; // kept for legacy parsing only
|
|
public string azione = "";
|
|
public string ip = "";
|
|
public string porta = "";
|
|
public short pathCNC = 1;
|
|
public int nodoHssb = -1;
|
|
public string username = "";
|
|
public string password = "";
|
|
public string commentoProgramma = "";
|
|
public string pathLocaleProgramma = "";
|
|
public bool compatibilityMode = false;
|
|
public bool hasToolOffsetData = false;
|
|
public bool hasWorkZeroOffsetData = false;
|
|
public bool mostraHelp = false;
|
|
public bool debugMode = false;
|
|
}
|
|
}
|