|
1 | 1 | @{ |
2 | | - RootModule = 'PowerShellBuild.psm1' |
3 | | - ModuleVersion = '0.6.2' |
4 | | - GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d' |
5 | | - Author = 'Brandon Olin' |
6 | | - CompanyName = 'Community' |
7 | | - Copyright = '(c) Brandon Olin. All rights reserved.' |
8 | | - Description = 'A common psake and Invoke-Build task module for PowerShell projects' |
| 2 | + RootModule = 'PowerShellBuild.psm1' |
| 3 | + ModuleVersion = '0.7.0' |
| 4 | + GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d' |
| 5 | + Author = 'Brandon Olin' |
| 6 | + CompanyName = 'Community' |
| 7 | + Copyright = '(c) Brandon Olin. All rights reserved.' |
| 8 | + Description = 'A common psake and Invoke-Build task module for PowerShell projects' |
9 | 9 | PowerShellVersion = '3.0' |
10 | | - RequiredModules = @( |
| 10 | + RequiredModules = @( |
11 | 11 | @{ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.16' } |
12 | 12 | @{ModuleName = 'Pester'; ModuleVersion = '5.6.1' } |
13 | 13 | @{ModuleName = 'platyPS'; ModuleVersion = '0.14.1' } |
|
24 | 24 | 'Test-PSBuildPester' |
25 | 25 | 'Test-PSBuildScriptAnalysis' |
26 | 26 | ) |
27 | | - CmdletsToExport = @() |
| 27 | + CmdletsToExport = @() |
28 | 28 | VariablesToExport = @() |
29 | | - AliasesToExport = @('*tasks') |
30 | | - PrivateData = @{ |
| 29 | + AliasesToExport = @('*tasks') |
| 30 | + PrivateData = @{ |
31 | 31 | PSData = @{ |
32 | | - Tags = @('psake', 'build', 'InvokeBuild') |
33 | | - LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE' |
34 | | - ProjectUri = 'https://github.com/psake/PowerShellBuild' |
35 | | - IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png' |
| 32 | + Tags = @('psake', 'build', 'InvokeBuild') |
| 33 | + LicenseUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/LICENSE' |
| 34 | + ProjectUri = 'https://github.com/psake/PowerShellBuild' |
| 35 | + IconUri = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/media/psaketaskmodule-256x256.png' |
36 | 36 | ReleaseNotes = 'https://raw.githubusercontent.com/psake/PowerShellBuild/master/CHANGELOG.md' |
37 | 37 | } |
38 | 38 | } |
|
0 commit comments