BinShred.psd1

@{
    ModuleVersion = '1.0.1'
    GUID = '5400ed09-03bb-4d61-ac9c-f71f7c229229'
    Author = 'Lee Holmes'
    Description = 'BinShred - interface for parsing arbitrary binary data in PowerShell'

    RootModule = "BinShred.dll"
    FunctionsToExport = @()
    CmdletsToExport = @( "ConvertFrom-BinaryData" )
    AliasesToExport = @( "binshred" )

    PrivateData = @{

        PSData = @{
            ProjectUri = 'https://github.com/LeeHolmes/BinShred/'
        }
    }
}