writelogasync.psm1

Import-Module "$PSSCriptRoot\writelogasync.dll"

Function Import-LoggingAssembly{
    $ass="$PSScriptRoot\writelogasync.dll"
    try{
        [System.Reflection.Assembly]::LoadFrom($ass)
    } catch{
        throw
    }

}