IODevice.driver

initial pester tests pass for all kinds
This commit is contained in:
pblivingston
2026-02-28 20:35:12 -05:00
parent abd792acd5
commit 2f2d4af848
5 changed files with 69 additions and 33 deletions

View File

@@ -20,11 +20,15 @@ class Remote {
[String]$vmpath
[Hashtable]$kind
[Object]$profiles
[String]$userpath
[String]$workingconfig
Remote ([String]$kindId) {
$this.vmpath = Setup_DLL
$this.kind = GetKind($kindId)
$this.profiles = Get_Profiles($this.kind.name)
$this.userpath = Join-Path ([Environment]::GetFolderPath('MyDocuments')) 'Voicemeeter'
$this.workingconfig = Join-Path $this.userpath ('vm' + $this.kind.name + '_working.xml')
}
[string] ToString() {