IntraOffice.ContentRepository.Powershell.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
#
# Module manifest for module 'IntraOffice.ContentRepository.Powershell'
#

@{
    RootModule = 'IntraOffice.ContentRepository.Powershell.dll'
    ModuleVersion = '10.0.18269.1'
    GUID = 'fe702934-a6c5-499b-beec-ea4facc54ef0'

    Author = 'IntraData'
    CompanyName = 'IntraData'
    Copyright = 'Copyright (c) 2018 IntraData BV. All rights reserved.'
    Description = 'Client library for the IntraOffice Content Repository'

    DefaultCommandPrefix = 'Repository'

    CmdletsToExport = @(
        'Get-Repository',
        'Add-Document',
        'Add-Container',
        'Export-Batch',
        'Import-Batch',
        'Get-Garbage',
        'Set-Disposal',
        'Remove-Document'
    )

    PowerShellVersion = '3.0'
    DotNetFrameworkVersion = '4.7'

}