Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions PowerFGT/PowerFGT.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,31 @@
@{

# Script module or binary module file associated with this manifest.
RootModule = 'PowerFGT.psm1'
RootModule = 'PowerFGT.psm1'

# Version number of this module.
ModuleVersion = '0.10.0'
ModuleVersion = '0.10.1'

# Supported PSEditions
CompatiblePSEditions = @('Desktop', 'Core')
#CompatiblePSEditions = @('Desktop', 'Core')

# ID used to uniquely identify this module
GUID = '608e2723-7ce4-4f86-a3c8-ac1acb4f1f66'
GUID = '608e2723-7ce4-4f86-a3c8-ac1acb4f1f66'

# Author of this module
Author = 'Alexis La Goutte'
Author = 'Alexis La Goutte'

# Company or vendor of this module
#CompanyName = 'Unknown'

# Copyright statement for this module
Copyright = '(c) Alexis La Goutte. All rights reserved.'
Copyright = '(c) Alexis La Goutte. All rights reserved.'

# Description of the functionality provided by this module
Description = 'PowerShell module to query the Fortigate API'
Description = 'PowerShell module to query the Fortigate API'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '3.0'
PowerShellVersion = '3.0'

# Name of the PowerShell host required by this module
# PowerShellHostName = ''
Expand Down Expand Up @@ -69,16 +69,16 @@
# NestedModules = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'
FunctionsToExport = '*'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @()
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'
VariablesToExport = '*'

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()
AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand All @@ -90,12 +90,12 @@
# FileList = @()

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('Fortinet', 'FortiGate', 'API')
Tags = @('Fortinet', 'FortiGate', 'API', 'PSEdition_Core', 'PSEdition_Desktop')

# A URL to the license for this module.
LicenseUri = 'https://github.com/FortiPower/PowerFGT/blob/master/LICENSE'
Expand Down