PSAudio.psd1

#
# Module manifest for module 'NAudio'
#
# Generated by: Jaykul
#
# Generated on: 10/8/2022
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'PSAudio.psm1'

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

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = '2a7f4ec9-60d3-4fcf-bcc8-c2b25199ebae'

# Author of this module
Author = 'Joel "Jaykul" Bennett'

# Company or vendor of this module
CompanyName = 'Huddled Masses'

# Copyright statement for this module
Copyright = '(c) 2022 Joel Bennett. All rights reserved.'

# Description of the functionality provided by this module
Description = 'A module that can play audio asynchronously in PowerShell'

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @(
    'lib\PSAudio.dll'
)


# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = 'Start-Sound'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()


# 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 = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        # Tags = @()

        # A URL to the license for this module.
        # LicenseUri = ''

        # A URL to the main website for this project.
        # ProjectUri = ''

        # A URL to an icon representing this module.
        # IconUri = ''

        # ReleaseNotes of this module
        ReleaseNotes = '
        '


        # Prerelease string of this module
        Prerelease = ''

        # Flag to indicate whether the module requires explicit user acceptance for install/update/save
        # RequireLicenseAcceptance = $false

        # External dependent modules of this module
        # ExternalModuleDependencies = @()

    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}