mirror of https://github.com/SixLabors/ImageSharp
27 changed files with 88 additions and 22 deletions
@ -1,4 +1,4 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<packages> |
|||
<package id="System.Data.SQLite.x86" version="1.0.84.0" targetFramework="net40" /> |
|||
<package id="System.Data.SQLite" version="1.0.84.0" targetFramework="net40" /> |
|||
</packages> |
|||
@ -0,0 +1 @@ |
|||
cb352e8236b42cc560ee62583a5b8e0d14d87851 |
|||
@ -0,0 +1 @@ |
|||
1838fba8df03d11c4b76a63b922448593bc908ce |
|||
@ -0,0 +1 @@ |
|||
ab8fbbdbc303e4e566b544198a6a7ff562cbdf15 |
|||
@ -1,16 +1,16 @@ |
|||
<?xml version="1.0"?> |
|||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> |
|||
<metadata> |
|||
<id>System.Data.SQLite.x86</id> |
|||
<id>System.Data.SQLite</id> |
|||
<version>1.0.84.0</version> |
|||
<title>System.Data.SQLite.x86</title> |
|||
<title>System.Data.SQLite (x86/x64)</title> |
|||
<authors>SQLite Development Team</authors> |
|||
<owners>SQLite Development Team</owners> |
|||
<licenseUrl>http://www.sqlite.org/copyright.html</licenseUrl> |
|||
<projectUrl>http://system.data.sqlite.org/</projectUrl> |
|||
<iconUrl>http://system.data.sqlite.org/images/sqlite32.png</iconUrl> |
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance> |
|||
<description>The official SQLite database engine combined with a complete ADO.NET provider all rolled into a single mixed-mode assembly for x86.</description> |
|||
<description>The official SQLite database engine for both x86 and x64 along with the ADO.NET provider.</description> |
|||
<releaseNotes /> |
|||
<copyright>Public Domain</copyright> |
|||
<language>en-US</language> |
|||
@ -0,0 +1 @@ |
|||
860c0e580744e6c434db8d7d468f8fc15e2a41be |
|||
@ -0,0 +1 @@ |
|||
6f6fd4f437e4579f5d8cd489c0d3095a7f0ebb8c |
|||
@ -0,0 +1 @@ |
|||
cb352e8236b42cc560ee62583a5b8e0d14d87851 |
|||
@ -0,0 +1 @@ |
|||
1838fba8df03d11c4b76a63b922448593bc908ce |
|||
@ -0,0 +1 @@ |
|||
26efb8ce39cf9b09e440c00d2639233402b2a154 |
|||
@ -0,0 +1 @@ |
|||
b937604acdc489ab2c0b89e0aaf075672e536b70 |
|||
@ -0,0 +1 @@ |
|||
7bae8574bfe9fbff66f60d60987008756be04acd |
|||
@ -0,0 +1 @@ |
|||
1ee930f18b364964b44e591dd81f3ce1a3615bac |
|||
@ -0,0 +1 @@ |
|||
aa5827973b95175e31ab254ee946d7d67c914383 |
|||
@ -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 |
|||
} |
|||
@ -1 +0,0 @@ |
|||
2db1579b36b2d81adf041533845e9a72ea6c2393 |
|||
@ -1 +0,0 @@ |
|||
168e4329b21098e36b1c1af6e0c8728d5e9c589e |
|||
@ -1 +0,0 @@ |
|||
f60b588d3ff22ae8b1f51d710a44a037683ce81d |
|||
@ -1 +0,0 @@ |
|||
c62d000052745e37933833a3b764eb47ece9673f |
|||
Loading…
Reference in new issue