在Visual Studio 2017
(或任何其他版本)中,我想在Powershell
脚本(*.ps1
)中添加一个断点,该脚本在运行时由C#程序调用。
例如,我有这个C#代码:
using System.Management.Automation
var powerShell = PowerShell.Create();
powerShell.AddCommand("script.ps1");
powerShell.Invoke();
如何在script.ps1
文件中添加一个在调用powerShell.Invoke()
时会被点击的断点?