mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
This is a massive overhaul that replaces System.Data.SQLite with Mono.Data.Sqlite. This should make it more compatible with Linux and Mac and has no known downsides for Windows.
13 lines
820 B
PowerShell
13 lines
820 B
PowerShell
param($installPath, $toolsPath, $package, $project)
|
|
|
|
# Add the SQLite SDK reference
|
|
$sqliteReference = $project.Object.References.AddSDK("SQLite for Windows Runtime", "SQLite.WinRT, version=3.8.7.4")
|
|
Write-Host "Successfully added a reference to the extension SDK SQLite for Windows Runtime."
|
|
Write-Host "Please, verify that the extension SDK SQLite for Windows Runtime v3.8.7.4, from the SQLite.org site (http://www.sqlite.org/2014/sqlite-winrt-3080704.vsix), has been properly installed."
|
|
|
|
# This is the global install file
|
|
$rootInstall = [System.IO.Path]::Combine($toolsPath, '../install.ps1')
|
|
$rootToolsPath = [System.IO.Path]::Combine($toolsPath, '../')
|
|
Write-Host $rootInstall
|
|
. $rootInstall -installPath $installPath -toolsPath $rootToolsPath -package $package -project $project
|
|
|