I'm attempting to write this in PowerShell:
cspack $a/ServiceDefinition.csdef /role:$b;$c /rolePropertiesFile:$a.$b;c$ /sites:$a;$b;$c /out:$out
But it looks like PowerShell needs this statement broken up which I'm having trouble with.
I get error/s like:
You must provide a value expression on the right hand side of the '/' operator
So how do I call an EXE file and provide a multi-line / switch argument in PowerShell If I do the following?
cspack.exe $a/ServiceDefinition.csdef `
/role:$b;$c ` (place backtick on the end)
/rolePropertiesFile:$a.$b;c$ (powershell complains on this line)