Please take a look at our library USBClientDevice documentation under "More Important Information". From documentation:
USBClientDevice myUSBDevice = new USBClientDevice((ushort)USBClientDevice.USB_IDs.VID_GHI, (ushort)USBClientDevice.USB_IDs.PID_CDC, 0x100, maxPower, null, "CDC VCOM", null, false);
USBClientClasses.CDC cdc = new USBClientClasses.CDC(myUSBDevice, "CDC VCOM");
Note that last parameter is false not true. This is to disable USB debugging.