-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRESONEWorkspace.psd1
27 lines (25 loc) · 1.33 KB
/
RESONEWorkspace.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
@{
RootModule = 'RESONEWorkspace.psm1';
ModuleVersion = '2.5.0';
GUID = 'da2df370-2b26-4319-aae7-ec4eebfd478d';
Author = 'Iain Brighton';
CompanyName = 'Virtual Engine';
Copyright = '(c) 2016 Virtual Engine Limited. All rights reserved.';
Description = 'RES ONE Workspace PowerShell cmdlets and configuration DSC resources. These resources are provided AS IS, and are not supported through any means.';
PowerShellVersion = '4.0';
FunctionsToExport = @(
'Import-ROWBuildingBlock',
'Export-ROWBuildingBlock',
'New-ROWManagementPortalConfiguration'
);
<# Removed for WMF 4 compaitibilty
DscResourcesToExport = @('ROWBuildingBlock', 'ROWConsole', 'ROWDatabase', 'ROWDatabaseAgent','ROWRelayServer',
'ROWRelayServerAgent'); #>
PrivateData = @{
PSData = @{
Tags = @('VirtualEngine','RES','ONE','Workspace','Manager','DSC');
LicenseUri = 'https://github.com/VirtualEngine/RESONEWorkspace/blob/master/LICENSE';
ProjectUri = 'https://github.com/VirtualEngine/RESONEWorkspace';
} # End of PSData hashtable
} # End of PrivateData hashtable
}