You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
411 B
12 lines
411 B
param($installPath, $toolsPath, $package, $project)
|
|
|
|
. (Join-Path $toolsPath "GetSqlCEPostBuildCmd.ps1")
|
|
|
|
# Get the current Post Build Event cmd
|
|
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
|
|
|
|
# Append our post build command if it's not already there
|
|
if (!$currentPostBuildCmd.Contains($SqlCEPostBuildCmd)) {
|
|
$project.Properties.Item("PostBuildEvent").Value += $SqlCEPostBuildCmd
|
|
}
|