12
Creé un dll en C# y me gustaría usarlo en PowerShell.Agregar referencia a dll en powershell 2.0
Sé que puedo cargar el archivo DLL usando:
[Reflection.Assembly]::LoadFile("MyDll.dll")
Pero no quiero utilizar la reflexión.
¿Hay alguna manera simple de incluir mi dll sin reflexión? Algo así como agregar referencia a este dll?
Esto también podría ayudarlo: http://stackoverflow.com/questions/6848741/can-i-write-a-class-using-powershell –