LocalRepoManager.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'LocalRepoManager.psm1'

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

    # Supported PSEditions
    CompatiblePSEditions = @('Desktop', 'Core')

    # ID used to uniquely identify this module
    GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'

    # Author of this module
    Author = 'PowerShell Community'

    # Company or vendor of this module
    CompanyName = 'Open Source'

    # Copyright statement for this module
    Copyright = '(c) PowerShell Community Contributors. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'PowerShell module for managing local NuGet repositories, installing modules from NuPkg files, and creating repository symlinks.'

    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion = '5.1'

    # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
    DotNetFrameworkVersion = '4.7.2'

    # 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 = @(
        'Install-ModuleFromLocalRepo',
        'New-LocalRepository', 
        'Set-LocalRepositoryLink',
        'Get-LocalRepositoryPackages',
        'Remove-LocalRepositoryPackage',
        'Test-LocalRepository'
    )

    # 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 = @('NuGet', 'LocalRepository', 'PackageManagement', 'PowerShell', 'Module', 'Installation')

            # A URL to the license for this module.
            LicenseUri = 'https://github.com/YourOrg/LocalRepoManager/blob/main/LICENSE'

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/YourOrg/LocalRepoManager'

            # A URL to an icon representing this module.
            IconUri = 'https://github.com/YourOrg/LocalRepoManager/raw/main/icon.png'

            # ReleaseNotes of this module
            ReleaseNotes = @"
1.0.0 - Initial release
- Install-ModuleFromLocalRepo: Interactive installation from local NuPkg files
- New-LocalRepository: Create and setup local repository directories
- Set-LocalRepositoryLink: Create symlinks from OneDrive to local repository
- Get-LocalRepositoryPackages: List all packages in repository
- Remove-LocalRepositoryPackage: Clean up old packages
- Test-LocalRepository: Validate repository structure and contents
"@


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

    # HelpInfo URI of this module
    # HelpInfoURI = ''

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