Files
DP44/Common/DTS.Common/lib/HDF.PInvoke.1.10.0.4/tools/Install.ps1
2026-04-17 14:55:32 -04:00

12 lines
416 B
PowerShell

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
}