Skip to content

Commit

Permalink
see changelog for v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Oct 12, 2018
1 parent 874ce1a commit ea4030f
Show file tree
Hide file tree
Showing 14 changed files with 701 additions and 501 deletions.
15 changes: 14 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@

{
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true
"files.trimTrailingWhitespace": true,
"cSpell.words": [
"about",
"archivepath",
"cms",
"dropbox",
"filepath",
"message",
"operations",
"ps",
"recipient",
"remote",
"mkdir"
]
}
9 changes: 4 additions & 5 deletions PSRemoteOperations.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
RootModule = 'PSRemoteOperations.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'
ModuleVersion = '2.0.0'

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

# ID used to uniquely identify this module
GUID = '62bc09fe-38bf-426d-aa3c-e6c2cf6bb528'
Expand Down Expand Up @@ -65,8 +65,7 @@ RequiredModules = @()
# 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 = 'New-PSRemoteOperation','Invoke-PSRemoteOperation','Get-PSRemoteOperationResult',
'Register-PSRemoteOperationWatcher'
FunctionsToExport = @('New-PSRemoteOperation','Invoke-PSRemoteOperation','Get-PSRemoteOperationResult','Register-PSRemoteOperationWatcher')

# 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 = ''
Expand Down Expand Up @@ -105,7 +104,7 @@ PrivateData = @{

# ReleaseNotes of this module
# ReleaseNotes = ''
ExternalModuleDependencies = "PSScheduledJob"
# ExternalModuleDependencies = "PSScheduledJob"

} # End of PSData hashtable

Expand Down
Loading

0 comments on commit ea4030f

Please sign in to comment.