EasyPIM.Orchestrator.psd1
@{ RootModule = 'EasyPIM.Orchestrator.psm1' ModuleVersion = '0.1.0' GUID = 'b6f9b3c9-bc6a-4d4b-8c51-7c45d42157cd' Author = 'Loïc MICHEL' CompanyName = 'EasyPIM' Copyright = '(c) Loïc MICHEL. All rights reserved.' Description = 'Orchestrator for EasyPIM (Invoke-EasyPIMOrchestrator)' PowerShellVersion = '5.1' RequiredModules = @( @{ ModuleName = 'EasyPIM'; ModuleVersion = '1.10.0' } ) NestedModules = @('shared\\EasyPIM.Shared\\EasyPIM.Shared.psd1') FunctionsToExport = @( 'Invoke-EasyPIMOrchestrator', 'Test-PIMPolicyDrift', 'Test-PIMEndpointDiscovery' ) AliasesToExport = @() CmdletsToExport = @() PrivateData = @{ PSData =@{ Tags = @('EasyPIM','Orchestrator') ProjectUri = 'https://github.com/kayasax/EasyPIM' LicenseUri = 'https://github.com/kayasax/EasyPIM/blob/main/LICENSE' Prerelease = 'beta8' ReleaseNotes = @' PRE-RELEASE: This is a beta version of the EasyPIM.Orchestrator module. It is not intended for production use and may change without notice. Use for testing and feedback only. Breaking changes may occur before the first stable release. '@ } } } |