我正在使用 Visual Studio for Mac(7.7.2;内部版本 21)使用 C# 创建 PowerShell 提供程序。
我想让 IDE 加载 PowerShell 进行调试。
项目的运行配置:
- 启动外部项目:
/usr/local/bin/pwsh
- 论据:
-NoProfile -NoExit -File "./InstallProvider.ps1"
InstallProvider.ps1
:
Import-Module "./PsMyModule.psd1" -Force -Verbose
PsMyModule.psd1
:
@{
# Script module or binary module file associated with this manifest.
RootModule = 'PsMyModule.dll'
}
两个文件 ( ps1
, psd1
) 都被标记Copy to output
。
当我在调试模式下运行项目时,我收到此错误:
参数“./InstallProvider.ps1”未被识别为脚本文件的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确并重试。
用法:pwsh[.exe] [[-File] [args]] [-Command { - | [-args] | [] } ] [-ConfigurationName ] [-EncodedCommand ] [-ExecutionPolicy ] [-InputFormat {Text | XML}] [-Interactive] [-NoExit] [-NoLogo] [-NonInteractive] [-NoProfile] [-OutputFormat {Text | XML}] [-Version] [-WindowStyle] [-WorkingDirectory]
pwsh[.exe] -h | -Help | -? | /?
PowerShell 联机帮助https://aka.ms/pscore6-docs
所有参数都不区分大小写。应用程序被未知信号终止:当前平台不支持此值。参数名称:value 实际值为 64。
但是,当我pwsh
从终端运行时,它按预期加载了模块:
~/.../bin/Debug/netstandard2.0$ pwsh -NoExit -File "./InstallProvider.ps1"
PowerShell 6.1.1
Copyright (c) Microsoft Corporation. All rights reserved.
https://aka.ms/pscore6-docs
Type 'help' to get help.
VERBOSE: Loading module from path '/Users/[user]/Projects/Visual Studio 2017/PsMyModule/bin/Debug/netstandard2.0/PsMyModule.psd1'.
VERBOSE: Loading module from path '/Users/[user]/Projects/Visual Studio 2017/PsMyModule/bin/Debug/netstandard2.0/PsMyModule.dll'.
这些变体都不起作用:
-File ".\InstallProvider.ps1"
-File InstallProvider.ps1
-File "./InstallProvider.ps1"
** 编辑 0 **
我将File
参数更改为"/Users/[user]/Projects/Visual Studio 2017/PsMyModule/bin/Debug/netstandard2.0/InstallProvider.ps1"
PowerShell 6.1.1
Copyright (c) Microsoft Corporation. All rights reserved.
https://aka.ms/pscore6-docs
Type 'help' to get help.
Import-Module : The specified module './PsMyModule.psd1' was not loaded because no valid module file was found in any module directory.
At /Users/[user]/Projects/Visual Studio 2017/PsMyModule/bin/Debug/netstandard2.0/InstallProvider.ps1:1 char:1
+ Import-Module "./PsMyModule.psd1" -Force -Verbose
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ResourceUnavailable: (./PsMyModule.psd1:String) [Import-Module], FileNotFoundException
+ FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand
PS />
似乎没有正确解释相对路径。此外,提示PS \>
似乎不接受输入。
** /编辑 0 **
** 编辑 1 **
我在 Visual Studio 2017 for Windows 中创建了一个类似的项目。调试设置:
它按预期加载了模块:
VERBOSE: Loading module from path 'C:\Users\XXX\source\repos\ClassLibrary1\ClassLibrary1\bin\Debug\netstandard2.0\FooModule.psd1'.
VERBOSE: Loading module from path 'C:\Users\XXX\source\repos\ClassLibrary1\ClassLibrary1\bin\Debug\netstandard2.0\FooModule.dll'.
PS C:\Users\XXX\source\repos\ClassLibrary1\ClassLibrary1\bin\Debug\netstandard2.0>
** /编辑 1 **
我错过了什么?OS X 版本有什么不同?