SimpleSoft.Utils.psd1

@{
    RootModule = 'SimpleSoft.Utils.psm1'
    ModuleVersion = '0.8.0.4796'
    GUID = '2A8780C2-AF29-4501-B949-48D39F4E8F52'
    Author = 'SimpleSoft'
    Description = 'Utillity functions for to simplify diferent tasks'
    CompanyName = 'SimpleSoft'
    PowerShellVersion = '5.0'
    RequiredModules = @(<#@{ ModuleName='PackageManagement'; ModuleVersion='1.0.0.1' }#>)
    FunctionsToExport = @(
        'Start-ProcessExt',
        'Update-SessionEnvironment',
        'Use-PackageProvider',
        'Use-Package',
        'Use-ChocoPackageProvider',
        'Use-ChocoPackage'
    )

    # 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 = @()

    # 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 = @()
}