test-module-sfdx.psd1
@{ # Version number of this module. ModuleVersion = '1.0.7' #Prerelease = 'alpha' # ID used to uniquely identify this module GUID = 'dd857431-fb94-49ef-a390-8c9dbd71a596' # Author of this module Author = 'Nicolas Rojas' # Company or vendor of this module CompanyName = 'Personal' # Copyright statement for this module Copyright = 'Copyright © 2025 Nicolas Rojas. All rights reserved.' # Licencia (puedes cambiarla según corresponda) #LicenseUri = 'https://opensource.org/licenses/MIT' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Description of the functionality provided by this module Description = 'A PowerShell module for testing purposes.' FunctionsToExport = @('Get-TestModule','Delete-OrgTraceFlags','Delete-OwnDebugLogs') 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 = @() RequiredModules = @() RequiredAssemblies = @() FileList = @('src/Public/Get-TestModule.ps1', 'src/Private/HelperFunction.ps1') CompatiblePSEditions = @('Desktop', 'Core') #NonVersioned = $false RootModule = 'test-module-sfdx.psm1' } |