Lunchbox.psd1

@{

  RootModule = "Lunchbox.psm1"

   # Correctly utilizing psd1 for FormatsToProcess and FunctionsToExport
  ModuleVersion = "1.2"

  GUID = "f266155f-342a-4b4c-8ed5-edfacb793115"

  Author = "Vonvyllych.Guibenscheimer"

  Description = "Cmdlet 'Get-Lunchbox' emits a collection of objects useful for demonstrating basic function of objects and properties in the pipeline, without reference to specfic applied technologies like the filesystem or an Active Directory domain. By default, this collection is entirely pre-defined and constructed from saved specifications, ensuring a consistent guided experience. 'Get-Lunchbox' is purposely defined without parameters, as demonstrating use of parameters is not the purpose of this module. Aspects of function may be changed using separate cmdlet 'Set-LunchboxConfiguration'."

  FormatsToProcess = "Lunchbox.format.ps1xml"

  FunctionsToExport = @(
    "Get-Lunchbox"
    "Set-LunchboxConfiguration"
    "Convert-LunchboxToDatasetString"
  )

  PrivateData = @{
    PSData = @{}
  }
}