Index: SQLite.MSIL.nuspec ================================================================== --- SQLite.MSIL.nuspec +++ SQLite.MSIL.nuspec @@ -1,6 +1,14 @@ + System.Data.SQLite.MSIL 1.0.82.0 SQLite Development Team Index: SQLite.nuspec ================================================================== --- SQLite.nuspec +++ SQLite.nuspec @@ -1,6 +1,14 @@ + System.Data.SQLite System.Data.SQLite (x86) 1.0.82.0 @@ -12,11 +20,16 @@ http://www.sqlite.org/copyright.html sqlite database ado.net provider interop Public Domain - - + + + + + + + Index: SQLite.x64.nuspec ================================================================== --- SQLite.x64.nuspec +++ SQLite.x64.nuspec @@ -1,6 +1,14 @@ + System.Data.SQLite.x64 1.0.82.0 SQLite Development Team Index: SQLite.x86.nuspec ================================================================== --- SQLite.x86.nuspec +++ SQLite.x86.nuspec @@ -1,6 +1,14 @@ + System.Data.SQLite.x86 1.0.82.0 SQLite Development Team ADDED install.ps1 Index: install.ps1 ================================================================== --- /dev/null +++ install.ps1 @@ -0,0 +1,36 @@ +############################################################################### +# +# 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 +}