Functions/InvokeMSBuildSSDT.ps1
function Invoke-MsBuildSSDT { param ( [string] $DatabaseSolutionFilePath , [string] $DataToolsFilePath , [string]$MSBuildVersionNumber) if ([string]::IsNullOrEmpty($MSBuildVersionNumber)) { $MSBuildVersionNumber = "15.0" } if ($MSBuildVersionNumber -ne "15.0") { $msbuild = "C:\Program Files (x86)\Microsoft Visual Studio\2017\*\MSBuild\15.0\Bin\MSBuild.exe" } else { $msbuild = "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" } if (-not (Test-Path $msbuild)) { Write-Error "No MSBuild installed. Instal Build Tools using 'Install-VsBuildTools2017', set -MSBuildVersionNumber to 15.0 and try again!" Throw } $arg1 = "/p:tv=$MSBuildVersionNumber" $arg2 = "/p:SSDTPath=$DataToolsFilePath" $arg3 = "/p:SQLDBExtensionsRefPath=$DataToolsFilePath" $arg4 = "/p:Configuration=Debug" Write-Host $msbuild $DatabaseSolutionFilePath $arg1 $arg2 $arg3 $arg4 -ForegroundColor White -BackgroundColor DarkGreen & $msbuild $DatabaseSolutionFilePath $arg1 $arg2 $arg3 $arg4 } |