22
33var entryAssemblyDirectory = AppContext . BaseDirectory ;
44
5- // Example of importing a KDMax file via the MaxCut command line interface.
5+ // // Example of importing a KDMax file via the MaxCut command line interface.
66// var importKdMaxCommand = new ImportKdMaxCommand();
77// importKdMaxCommand.Run($"{entryAssemblyDirectory}\\test_files\\kdmax.csv");
8-
9- // Example of importing a Cab Master file via the MaxCut command line interface.
8+ //
9+ // // Example of importing a Cab Master file via the MaxCut command line interface.
1010// var importCabMasterCommand = new ImportCabMasterCommand();
1111// importCabMasterCommand.Run($"{entryAssemblyDirectory}\\test_files\\cabmaster.csv");
12-
13- // Example of opening a MaxCut job file (.mc3) via the MaxCut command line interface.
12+ //
13+ // // Example of opening a MaxCut job file (.mc3) via the MaxCut command line interface.
1414// var openMaxCutJobCommand = new OpenMaxCutJobCommand();
1515// openMaxCutJobCommand.Run($"{entryAssemblyDirectory}\\test_files\\F300.mc3");
16+ //
17+ // // Example of activating a license code via the MaxCut command line interface.
18+ // var licenseActivateCommand = new LicenseActivateCommand();
19+ // licenseActivateCommand.Run("my-license-code");
20+ //
21+ // // Example of deactivating a license code via the MaxCut command line interface.
22+ // var licenseDeactivateCommand = new LicenseDeactivateCommand();
23+ // licenseDeactivateCommand.Run();
1624
17- // Example of activating a license code via the MaxCut command line interface.
18- // var activateCommand = new ActivateCommand();
19- // activateCommand.Run("my-license-code");
20-
21- // Example of activating a license code via the MaxCut command line interface.
22- var deactivateCommand = new DeactivateCommand ( ) ;
23- deactivateCommand . Run ( ) ;
25+ // Example of deactivating a license code via the MaxCut command line interface.
26+ var licenseInfoCommand = new LicenseInfoCommand ( ) ;
27+ licenseInfoCommand . Run ( ) ;
0 commit comments