forked from simpleidserver/SimpleIdServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psake.psd1
33 lines (33 loc) · 1.17 KB
/
psake.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
@{
RootModule = 'psake.psm1'
ModuleVersion = '4.9.1'
GUID = 'cfb53216-072f-4a46-8975-ff7e6bda05a5'
Author = 'James Kovacs'
Copyright = 'Copyright (c) 2010-18 James Kovacs, Damian Hickey, Brandon Olin, and Contributors'
PowerShellVersion = '3.0'
Description = 'psake is a build automation tool written in PowerShell.'
FunctionsToExport = @(
'Invoke-psake'
'Invoke-Task'
'Get-PSakeScriptTasks'
'Task'
'Properties'
'Include'
'FormatTaskName'
'TaskSetup'
'TaskTearDown'
'Framework'
'Assert'
'Exec'
)
VariablesToExport = 'psake'
PrivateData = @{
PSData = @{
ReleaseNotes = 'https://raw.githubusercontent.com/psake/psake/master/CHANGELOG.md'
LicenseUri = 'https://raw.githubusercontent.com/psake/psake/master/license.txt'
ProjectUri = 'https://github.com/psake/psake'
Tags = @('Build', 'Task')
IconUri = 'https://raw.githubusercontent.com/psake/graphics/master/png/psake-single-icon-teal-bg-256x256.png'
}
}
}