PSPublishHelper.psd1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@{
    RootModule = 'PSPublishHelper.psm1'
    ModuleVersion = '0.3.0'
    # CompatiblePSEditions = @()
    GUID = '89d9bea3-6e06-44ef-8772-a45b644da8c0'
    Author = 'Mark E. Kraus'
    CompanyName = 'Mark E. Kraus'
    Copyright = 'Copyright (c) Mark E. Kraus. All rights reserved.'
    Description = 'A module to assist with "Build Once, Deploy Many" publishing paradigms for PowerShell'
    # PowerShellVersion = ''
    # PowerShellHostName = ''
    # PowerShellHostVersion = ''
    # DotNetFrameworkVersion = ''
    # CLRVersion = ''
    # ProcessorArchitecture = ''
    # RequiredModules = @()
    # RequiredAssemblies = @()
    # ScriptsToProcess = @()
    # TypesToProcess = @()
    # FormatsToProcess = @()
    # NestedModules = @()
    FunctionsToExport = @('Publish-PSModuleNuget')
    CmdletsToExport = @()
    # VariablesToExport = @()
    AliasesToExport = @()
    # DscResourcesToExport = @()
    # ModuleList = @()
    # FileList = @()
    PrivateData = @{
  PSData = @{
    ProjectUri = 'https://github.com/markekraus/PSPublishHelper'
    LicenseUri = 'https://github.com/markekraus/PSPublishHelper/blob/master/LICENSE'
    Tags = @('Module','Builder','Publishing','Template','CI','CD','CI/CD')
  }
} # End of PrivateData hashtable
    # HelpInfoURI = ''
    # DefaultCommandPrefix = ''
}