-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPowerShellBuild.psd1
39 lines (39 loc) · 1.59 KB
/
PowerShellBuild.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
@{
RootModule = 'PowerShellBuild.psm1'
ModuleVersion = '0.7.1'
GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d'
Author = 'Brandon Olin'
CompanyName = 'Community'
Copyright = '(c) Brandon Olin. All rights reserved.'
Description = 'A common psake and Invoke-Build task module for PowerShell projects'
PowerShellVersion = '3.0'
RequiredModules = @(
@{ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.16' }
@{ModuleName = 'Pester'; ModuleVersion = '5.6.1' }
@{ModuleName = 'platyPS'; ModuleVersion = '0.14.1' }
@{ModuleName = 'psake'; ModuleVersion = '4.9.0' }
)
FunctionsToExport = @(
'Build-PSBuildMAMLHelp'
'Build-PSBuildMarkdown'
'Build-PSBuildModule'
'Build-PSBuildUpdatableHelp'
'Clear-PSBuildOutputFolder'
'Initialize-PSBuild'
'Publish-PSBuildModule'
'Test-PSBuildPester'
'Test-PSBuildScriptAnalysis'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @('*tasks')
PrivateData = @{
PSData = @{
Tags = @('psake', 'build', 'InvokeBuild')
LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE'
ProjectUri = 'https://github.com/psake/PowerShellBuild'
IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png'
ReleaseNotes = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/CHANGELOG.md'
}
}
}