strings.psd1

@{
  RootModule = 'strings.psm1'
  ModuleVersion = '1.0.0.0'
  CompatiblePSEditions = 'Core', 'Desk'
  GUID = '0edc44a1-4526-4fcc-a35c-f2bd919c4a3e'
  Author = 'greg zakharov'
  Copyright = 'MIT'
  Description = 'Search strings in binary files.'
  PowerShellVersion = '5.1'
  AliasesToExport = 'strings'
  FunctionsToExport = 'Get-Strings'
  FileList = @(
    'strings.psd1',
    'strings.psm1'
  )
}