PSChocolateyGet.psd1

@{
RootModule = 'PSChocolateyGet.psm1'
ModuleVersion = '0.0.2'
GUID = '37c46e1a-5c01-4ad8-8f45-210d0155171d'
Author = 'George Bowen'
Copyright = '(c) George Bowen. All rights reserved.'
Description = 'Build Chocolatey packages programatically using a single configuration file which follows the winget schema'
PowerShellVersion = '7.0.0' # We need powershell 7 to do the schema validation stuff
RequiredModules = @(
    "powershell-yaml"
)
FunctionsToExport = @('New-ChocolateyGetPackage')
# ModuleList = @()
# FileList = @()
PrivateData = @{
    PSData = @{
        Tags = @(
            "chocolatey", "winget", "validation", "packages"
        )
        # LicenseUri = ''
        ProjectUri = 'https://github.com/Geogboe/PSChocolateyGet'
        # IconUri = ''
        ReleaseNotes = 'v0.0.2 [Thursday, February 4, 2021 10:56 AM] Geogboe (8): * [86f236f] addd a build script * [0085ae1] add format, test, and deploy tasks to build script * [66bfa5b] add psdeploy script * [9bb1213] switch to prerelease version * [5a21247] add docs task * [a125ee3] add an example which uses dynamic scripts * [df8e68f] add latest script to grab latest version of win-acme * [2560415] add Get-DynamicProperty function to run dynamic scripts '
        Prerelease = 'prerelease'
        # ExternalModuleDependencies = @()
    }
}
# HelpInfoURI = ''
# DefaultCommandPrefix = ''
}