-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRESONEAutomation.psd1
More file actions
27 lines (25 loc) · 1.36 KB
/
RESONEAutomation.psd1
File metadata and controls
27 lines (25 loc) · 1.36 KB
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
@{
RootModule = 'RESONEAutomation.psm1';
ModuleVersion = '2.6.1';
GUID = '7879d40d-210f-4ab0-b870-a219dd0e8110';
Author = 'Iain Brighton';
CompanyName = 'Virtual Engine';
Copyright = '(c) 2017 Virtual Engine Limited. All rights reserved.';
Description = 'RES ONE Automation PowerShell cmdlets and configuration composite DSC resources. These resources are provided AS IS, and are not supported through any means.';
FunctionsToExport = @(
'Get-ROAEnvironmentGuid',
'Get-ROASiteLicense',
'Import-ROABuildingBlock',
'New-ROAManagementPortalConfiguration'
);
<# Removed for WMF 4 compaitibilty
DscResourcesToExport = @('ROAAgent','ROABuildingBlock','ROAConsole','ROADatabase','ROADatabaseAgent',
'ROADispatcher'); #>
PrivateData = @{
PSData = @{
Tags = @('VirtualEngine','RES','ONE','Automation','Manager','DSC');
LicenseUri = 'https://github.com/VirtualEngine/RESONEAutomation/blob/master/LICENSE';
ProjectUri = 'https://github.com/VirtualEngine/RESONEAutomation';
} # End of PSData hashtable
} # End of PrivateData hashtable
}