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.
10 lines
378 B
10 lines
378 B
param($installPath, $toolsPath, $package, $project)
|
|
|
|
. (Join-Path $toolsPath "GetSqlCEPostBuildCmd.ps1")
|
|
|
|
# Get the current Post Build Event cmd
|
|
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
|
|
|
|
# Remove our post build command from it (if it's there)
|
|
$project.Properties.Item("PostBuildEvent").Value = $currentPostBuildCmd.Replace($SqlCEPostBuildCmd, "")
|