Get-PowerApp.psd1
@{ # Module manifest for Get-PowerApp RootModule = 'Get-PowerApp.psm1' ModuleVersion = '1.0.1' GUID = 'a8b3c4d5-e6f7-8901-2345-6789abcdef01' Author = 'Your Name' CompanyName = 'Your Company' Copyright = '(c) 2025. All rights reserved.' Description = 'PowerShell module for retrieving Power Apps with caching support' RequiredModules = @( @{ModuleName='MSAL.PS'; ModuleVersion='4.37.0.0'} ) # Minimum PowerShell version PowerShellVersion = '5.1' # Functions to export from this module FunctionsToExport = @( 'Get-PowerApp', 'Clear-PowerAppsCache' ) # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ # Tags applied to this module for discoverability in PowerShell Gallery Tags = @('PowerPlatform', 'PowerApps', 'Environment', 'Azure', 'Cache') # License for this module LicenseUri = '' # Project site for this module ProjectUri = '' # Icon for this module IconUri = '' # Release notes for this module ReleaseNotes = 'Initial release with caching support for Power Platform environments' } } } |