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
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"version": "0.7.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
Expand All @@ -14,7 +14,7 @@
"-NoExit",
"-NoProfile",
"-Command",
"Import-Module ${workspaceFolder}/module/Microsoft.PowerShell.ConsoleGuiTools"
"Import-Module -verbose ${workspaceFolder}/module/Microsoft.PowerShell.ConsoleGuiTools"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ baseObject is PSReference ||
baseObject is PSObject)
{
ErrorRecord error = new ErrorRecord(
new FormatException("Invalid data type for Out-GridView"),
new FormatException("Invalid data type for Out-ConsoleGridView"),
DataNotQualifiedForGridView,
ErrorCategory.InvalidType,
null);
Expand Down