1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-04 11:43:19 +02:00

12 lines
411 B
PowerShell
Raw Normal View History

2011-06-23 00:16:15 -07:00
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
}