ProvisioningTools.psd1

# Copyright 2019 David Haymond.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.

@{
    RootModule = 'ProvisioningTools.psm1'
    ModuleVersion = '3.1.0'
    CompatiblePSEditions = @('Core')
    GUID = '2b57262c-fe9a-4d47-89b5-c151713553b0'
    Author = 'David Haymond'
    Copyright = 'Copyright 2019 David Haymond <david@davidhaymond.dev>'
    Description = 'Automates creation of Windows provisioning packages.'
    PowerShellVersion = '6.1'
    FunctionsToExport = @('New-ProvisioningPackage')
    CmdletsToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('ProvisioningPackage', 'Deployment', 'PSEdition_Core', 'Windows')
            LicenseUri = 'https://git.sr.ht/~davidhaymond/ProvisioningTools/tree/master/item/LICENSE'
            ProjectUri = 'https://git.sr.ht/~davidhaymond/ProvisioningTools'
        }
    }
}