mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
moved SQL CE to Nuget.
This commit is contained in:
11
packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1
vendored
Normal file
11
packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user