Classes/VMWare.Settings.psm1
|
class VMWareSettings { static [String]$SAVE_DIR = "${env:\userprofile}\.Compex.VMWare" static [String]$SAVE_FILE = 'VMWareAuth.xml' static [String]$SAVE_PATH = [VMWareSettings]::SAVE_DIR + '/' + [VMWareSettings]::SAVE_FILE # Schema version of the saved profile file. Bump when the persisted format changes and add migration logic to VMWare.VCenterManager static [Int]$SCHEMA_VERSION = 2 } |