LMS57
Results
1
comments of
LMS57
Problem seems to be in grabbing the path information when loading the libraries Changing: ` [Reflection.Assembly]::LoadFile($currentLocation.Path + "\\OrcaMDF.RawCore.dll") | Out-Null [Reflection.Assembly]::LoadFile($currentLocation.Path + "\\OrcaMDF.Framework.dll") | Out-NUll` To: ` [Reflection.Assembly]::LoadFile($PSScriptRoot + "\\OrcaMDF.RawCore.dll")...