-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPSProjectStatus.psd1
47 lines (41 loc) · 2.58 KB
/
PSProjectStatus.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
44
45
46
# Module manifest for module 'PSProjectStatus'
@{
RootModule = 'PSProjectStatus.psm1'
ModuleVersion = '0.17.0'
CompatiblePSEditions = 'Desktop', 'Core'
GUID = 'ec249544-dc4e-4e24-aae8-4281ec84f54d'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2022-2025 JDH Information Technology Solutions, Inc. All rights reserved.'
Description = 'A set of PowerShell tools for tracking module development status. The module uses a JSON file to create a custom object with information about your module. You can use this internally to track the status of your module including a simple to-do tracker. This module was first described at https://jdhitsolutions.com/blog/powershell/8960/introducing-psprojectstatus/'
PowerShellVersion = '5.1'
TypesToProcess = @('types\psprojectstatus.types.ps1xml')
FormatsToProcess = @('formats\psprojectstatus.format.ps1xml', '.\formats\psprojecttask.format.ps1xml')
FunctionsToExport = @(
'Get-PSProjectStatus', 'New-PSProjectStatus',
'Set-PSProjectStatus', 'Get-PSProjectGitStatus',
'Get-PSProjectReport', 'Get-PSProjectTask',
'New-PSProjectTask', 'Remove-PSProjectTask',
'Update-PSProjectStatus', 'Open-PSProjectStatusHelp'
)
AliasesToExport = @('gpstat', 'npstat', 'spstat', 'gitstat','nptask')
PrivateData = @{
PSData = @{
Tags = @('modules', 'scripting', 'project-management', 'project', 'psmodule', 'to-do')
LicenseUri = 'https://github.com/jdhitsolutions/PSProjectStatus/blob/main/License.txt'
ProjectUri = 'https://github.com/jdhitsolutions/PSProjectStatus'
IconUri = 'https://raw.githubusercontent.com./jdhitsolutions/PSProjectStatus/main/images/psproject-icon.png'
ReleaseNotes = @'
## [0.17.0] - 2025-01-08
### Changed
- Moved default help PDF to en-US.
- Updates to `README` files.
### Fixed
- Fixed doc links in the French help PDF file. [Issue #16](https://github.com/jdhitsolutions/PSProjectStatus/issues/16)
- Fixed issue trying to open default `README` as markdown. [Issue #15](https://github.com/jdhitsolutions/PSProjectStatus/issues/15)
- Fixed task-related bugs. Rolled class definition and code back to v0.14.0. [Issue #17](https://github.com/jdhitsolutions/PSProjectStatus/issues/17) _This is a potential breaking change._
'@
RequireLicenseAcceptance = $false
}
}
}