我正在尝试在 PowerShell 中编写此代码:
cspack $a/ServiceDefinition.csdef /role:$b;$c /rolePropertiesFile:$a.$b;c$ /sites:$a;$b;$c /out:$out
但看起来 PowerShell 需要分解这个我遇到问题的语句。
我收到如下错误:
您必须在“/”运算符的右侧提供一个值表达式
那么,如果我执行以下操作,如何调用 EXE 文件并在 PowerShell 中提供多行/切换参数?
cspack.exe $a/ServiceDefinition.csdef `
/role:$b;$c ` (place backtick on the end)
/rolePropertiesFile:$a.$b;c$ (powershell complains on this line)