forked from guitarrapc/GraniResource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNew-GraniResourceManifest.ps1
25 lines (23 loc) · 1005 Bytes
/
New-GraniResourceManifest.ps1
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
param([string]$Version, [string]$Path)
$script:moduleManufest = @{
Path = $Path
ModuleVersion = $Version
Author = 'guitarrapc'
CompanyName = 'Grani'
Description = 'DSC Resource for Windows Configuration Management.'
PowerShellVersion = '4.0'
CLRVersion = '4.0'
RequiredModules = @()
FunctionsToExport = @('*')
CmdletsToExport = '*'
Tags = "DesiredStateConfiguration", "DSC", "DSCResources"
ReleaseNotes = "https://github.com/guitarrapc/GraniResource/releases/tag/ver.$Version"
ProjectUri = "https://github.com/guitarrapc/GraniResource"
LicenseUri = "https://github.com/guitarrapc/GraniResource/blob/master/LICENSE"
<#
# As these are not supported in PowerShell 4.0...
# and this section cause Module Version in mof to be force "0.0"
DscResourcesToExport = @()
#>
}
New-ModuleManifest @moduleManufest