Mercurial > pub > bltoolkit
view packages/System.Data.SQLite.1.0.90.0/tools/install.ps1 @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:34:46 +0400 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
############################################################################### # # install.ps1 -- # # Written by Joe Mistachkin. # Released to the public domain, use at your own risk! # ############################################################################### param($installPath, $toolsPath, $package, $project) $platformNames = "x86", "x64" $fileName = "SQLite.Interop.dll" $propertyName = "CopyToOutputDirectory" foreach($platformName in $platformNames) { $folder = $project.ProjectItems.Item($platformName) if ($folder -eq $null) { continue } $item = $folder.ProjectItems.Item($fileName) if ($item -eq $null) { continue } $property = $item.Properties.Item($propertyName) if ($property -eq $null) { continue } $property.Value = 1 }