This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sqlitedll = ".\System.Data.SQLite.dll" | |
if (!(Test-Path -Path $sqlitedll)) | |
{ | |
Write-Host "Grab your copy of System.Data.SQLite.dll. " -ForegroundColor Yellow | |
Write-Host "Most likely from https://system.data.sqlite.org/downloads/1.0.113.0/sqlite-netFx40-static-binary-bundle-x64-2010-1.0.113.0.zip" -ForegroundColor Yellow | |
Write-Host "Your bitness is:" (8*[IntPtr]::Size) -ForegroundColor Yellow | |
Write-Host "Your .Net version is:" $PSVersionTable.CLRVersion -ForegroundColor Yellow | |
Write-Host 'No installation needed. Just unzip and update the $sqlitedll variable above.' -ForegroundColor Yellow | |
return |