$rawConfig = Get-Content appsettings.json | ConvertFrom-Json $configTable = @{ Environment = $rawConfig.Env Features = $rawConfig.Features -join ';' Timeout = [timespan]::FromMinutes($rawConfig.WaitTime) }
$diff = Compare-Object $oldTable.GetEnumerator() $newTable.GetEnumerator() -Property Name,Value
|