kc2ine
kc2ine

Reputation: 11

Start-Process fails with msbuild with write-error in powershell

I try do something very simple like this but it fails with exception:

Build-VisualStudioSolution <<<<   
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Build-VisualStudioSolution

simple script is like that. When I run the same from command line it is fine.

@buildArgs = "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe C:\WORK\test\test.sln /t:build"

try{
Start-Process @BuildArgs 

}
catch{            
Write-Error ($_.Message);            
}    

thanks for tips

Upvotes: 1

Views: 1298

Answers (1)

JasonMArcher
JasonMArcher

Reputation: 15011

First thing, you don't need to catch if you just want to print the error.

Second, your syntax is wrong. It should look like this:

$buildArgs = "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe", C:\WORK\test\test.sln", "/t:build"

Start-Process @BuildArgs 

Upvotes: 1

Related Questions