forked from StartAutomating/PSDevOps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSDevOps.psd1
50 lines (49 loc) · 1.83 KB
/
PSDevOps.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
47
48
49
50
@{
ModuleVersion = '0.5.8'
RootModule = 'PSDevOps.psm1'
Description = 'PowerShell Tools for DevOps'
Guid = 'e6b56c5f-41ac-4ba4-8b88-2c063f683176'
PrivateData = @{
PSData = @{
Tags = 'ADO', 'AzureDevOps', 'PSDevOps', 'DevOps'
ProjectURI = 'https://github.com/StartAutomating/PSDevOps'
LicenseURI = 'https://github.com/StartAutomating/PSDevOps/blob/master/LICENSE'
ReleaseNotes = @'
0.5.8:
* Running EZOut in Workflow (#148)
* Adding support for HelpOut (#147)
* Updating action (pushing changes) #144
* Updating GitHub Workflow steps/jobs - adding support for HelpOut and EZOut
* Initial Version of PSDevOps Action (#144)
* Adding Remove-ADOPermission (#143)
* Set-ADOPermission: Fixing help typo
* Adding FlushRequestQueue Part
* Fixing Refactoring Related Import Issue
* Adding Initial Extensions (related to -ADOTest commands)
* Add-ADOTest: Initial Commit
* Get-ADOBuild: Passing along ProjectID and ProjectName
* Get/Set-ADOPermission: Repov2 issue (#140)
* Recategorizing Functions
---
0.5.7:
---
* Fixing issue with setting branch permissions (#136)
* Get/Set-ADOPermission: Support for ServiceEndpoints (#137)
* Set-ADOPermission: Exposing specialized parameter sets (#138)
* PSDevOps.WorkProcess objects now return .ProcessName and .ProcessID as alias properties
Previous Release Notes available in [CHANGELOG.md](https://github.com/StartAutomating/PSDevOps/blob/master/CHANGELOG.md)
'@
}
Colors = @{
Build = @{
Succeeded = '#00ff00'
Failed = '#ff0000'
}
}
}
FormatsToProcess = 'PSDevOps.format.ps1xml'
TypesToProcess = 'PSDevOps.types.ps1xml'
Author = 'James Brundage'
Copyright = '2019 Start-Automating'
PowerShellVersion ='3.0'
}