forked from EvotecIT/O365Essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
O365Essentials.psd1
30 lines (30 loc) · 1.35 KB
/
O365Essentials.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
@{
AliasesToExport = @('*')
Author = 'Przemyslaw Klys'
CmdletsToExport = @()
CompanyName = 'Evotec'
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = 'Przemyslaw Klys. All rights reserved.'
Description = 'A module that helps to manage some tasks on Office 365/Azure via undocumented API'
FunctionsToExport = @('*')
GUID = 'a8752d7b-17c8-41db-b3f9-b8f225de028d'
ModuleVersion = '0.0.9'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
Tags = @('Windows', 'Office365', 'Graph', 'Azure', 'Unsupported', 'API')
ProjectUri = 'https://github.com/EvotecIT/O365Essentials'
ExternalModuleDependencies = @('Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Management')
}
}
RequiredModules = @(@{
ModuleVersion = '0.0.211'
ModuleName = 'PSSharedGoods'
Guid = 'ee272aa8-baaa-4edf-9f45-b6d6f7d844fe'
}, @{
ModuleVersion = '2.5.2'
ModuleName = 'Az.Accounts'
Guid = '17a2feff-488b-47f9-8729-e2cec094624c'
}, 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Management')
RootModule = 'O365Essentials.psm1'
}