moved SQL CE to Nuget.

This commit is contained in:
kay.one 2011-06-23 00:16:15 -07:00
commit 3cd4ee3996
31 changed files with 876 additions and 20 deletions

View 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
}