WinDbg.psd1

#
# Module manifest for module 'WinDbg'
#

@{

# Version number of this module.
ModuleVersion = '1.0'

# ID used to uniquely identify this module
GUID = 'f96d9e5e-1834-4eff-a2d0-cae29e81c087'

Author = "Lee Holmes"

# Description of the functionality provided by this module
Description = 'Module for automation of Windows Debugging'

RootModule = "WinDbg.psm1"

FunctionsToExport = "Connect-DbgSession", "Disconnect-DbgSession", "Get-DbgHelp", "Invoke-DbgCommand", "New-DbgSession", "Receive-DbgOutput", "Resume-DbgSession", "Stop-DbgSession", "Suspend-DbgSession"

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
    PSData = @{
        # A URL to the main website for this project.
        ProjectUri = 'https://www.leeholmes.com/blog/2009/01/21/scripting-windbg-with-powershell/'
    } # End of PSData hashtable
} # End of PrivateData hashtable

}