Files
DP44/Common/DTS.CommonCore/.svn/pristine/4c/4cb0f2c0593bfe2c9f8234a6449172578bbe00bc.svn-base

12 lines
416 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetHDFPostBuildCmd.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($HDFPostBuildCmd)) {
$project.Properties.Item("PostBuildEvent").Value += $HDFPostBuildCmd
}