Windows PowerShell 集成脚本环境 (ISE)

应用场景

有时会遇到一些这样的报错

Exception calling "SetData" with "2" argument(s): "Type 'Microsoft.VisualStudio.ProjectSystem.VS.Implementation.Package.Automation.OAProject' in assembly 'Microsoft.VisualStudio.ProjectSystem.VS.Implementation, Version=15.0.0.0, 
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' is not marked as serializable."
At C:Users.......nugetpackagesentityframework6.2.0	oolsEntityFramework.psm1:722 char:5

最后提到了EntityFramework.psm1
.psm1文件和.psd1文件可以用 PowerShell ISE 打开并进行调试
1

参考资料

基本介绍-Windows PowerShell 5.0 ISE 中的新增功能
如何在 Windows PowerShell ISE 中调试脚本
语法-Write-Error

原文地址:https://www.cnblogs.com/Lulus/p/9497885.html