Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@{

# Script module or binary module file associated with this manifest.
RootModule = 'Microsoft.Azure.Functions.PowerShellWorker.Module.psm1'
RootModule = 'Microsoft.Azure.Functions.PowerShellWorker.psm1'

# Version number of this module.
ModuleVersion = '0.1.0'
Expand Down
2 changes: 1 addition & 1 deletion src/PowerShell/PowerShellManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ internal Hashtable InvokeFunction(
}
}

var result = _pwsh.AddCommand("Microsoft.Azure.Functions.PowerShellWorker.Module\\Get-OutputBinding")
var result = _pwsh.AddCommand("Microsoft.Azure.Functions.PowerShellWorker\\Get-OutputBinding")
.AddParameter("Purge")
.InvokeAndClearCommands<Hashtable>()[0];

Expand Down