Files
WindowsNotifications/check-assembly.ps1
T
2025-04-10 21:13:24 -04:00

4 lines
240 B
PowerShell

Add-Type -Path 'WindowsNotifications\bin\Release\WindowsNotifications.dll'
$assembly = [AppDomain]::CurrentDomain.GetAssemblies() | Where-Object { $_.GetName().Name -eq 'WindowsNotifications' }
$assembly.GetTypes() | Select-Object FullName