mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
10 lines
378 B
PowerShell
10 lines
378 B
PowerShell
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, "")
|