You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the description of this extension, the parameters like BuildPlatform and BuildConfiguration should be considered when building a project. When calling the build from the BuildSSASTask.ps1 script it is obvious that the argument list consists only $projPath and /build. Also it does not work if $projPath contains spaces.
According to the description of this extension, the parameters like BuildPlatform and BuildConfiguration should be considered when building a project. When calling the build from the BuildSSASTask.ps1 script it is obvious that the argument list consists only $projPath and /build. Also it does not work if $projPath contains spaces.
Write-Host ("Building project")
$ArgumentList = "$projPath /build"
try {
start-process $devenv $ArgumentList -NoNewWindow -PassThru -Wait -Verbose -RedirectStandardError $true
The text was updated successfully, but these errors were encountered: