Skip to content

Commit 7939e2d

Browse files
committed
Removed static link to SQLite dll. Changed to NuGet
1 parent c8806e6 commit 7939e2d

5 files changed

Lines changed: 26 additions & 8 deletions

File tree

Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Digitalroot.net")]
1212
[assembly: AssemblyProduct("SQLiteWrapper")]
13-
[assembly: AssemblyCopyright("Copyright © Digitalroot.net 2008")]
13+
[assembly: AssemblyCopyright("Copyright © Digitalroot.net 2008-2013")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Revision and Build Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("1.0.2.0")]
35+
[assembly: AssemblyFileVersion("1.0.2.0")]

SQLiteWrapper.csproj

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,20 @@
5555
<ItemGroup>
5656
<Reference Include="System" />
5757
<Reference Include="System.Data" />
58-
<Reference Include="System.Data.SQLite, Version=1.0.43.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86" />
58+
<Reference Include="System.Data.SQLite, Version=1.0.86.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
59+
<SpecificVersion>False</SpecificVersion>
60+
<HintPath>packages\System.Data.SQLite.1.0.86.0\lib\net45\System.Data.SQLite.dll</HintPath>
61+
</Reference>
62+
<Reference Include="System.Data.SQLite.Linq, Version=1.0.86.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
63+
<SpecificVersion>False</SpecificVersion>
64+
<HintPath>packages\System.Data.SQLite.1.0.86.0\lib\net45\System.Data.SQLite.Linq.dll</HintPath>
65+
</Reference>
5966
<Reference Include="System.Xml" />
6067
</ItemGroup>
6168
<ItemGroup>
6269
<Compile Include="SQLiteWrapper.cs" />
6370
<Compile Include="Properties\AssemblyInfo.cs" />
6471
</ItemGroup>
65-
<ItemGroup>
66-
<Content Include="libs\System.Data.SQLite.dll">
67-
</Content>
68-
</ItemGroup>
6972
<ItemGroup>
7073
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
7174
<Visible>False</Visible>
@@ -78,6 +81,17 @@
7881
<Install>true</Install>
7982
</BootstrapperPackage>
8083
</ItemGroup>
84+
<ItemGroup>
85+
<Content Include="x64\SQLite.Interop.dll">
86+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
87+
</Content>
88+
<Content Include="x86\SQLite.Interop.dll">
89+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
90+
</Content>
91+
</ItemGroup>
92+
<ItemGroup>
93+
<None Include="packages.config" />
94+
</ItemGroup>
8195
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
8296
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
8397
Other similar extension points exist, see Microsoft.Common.targets.

libs/System.Data.SQLite.dll

-594 KB
Binary file not shown.

packages.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="System.Data.SQLite" version="1.0.86.0" targetFramework="net45" />
4+
</packages>

x86/SQLite.Interop.dll

910 KB
Binary file not shown.

0 commit comments

Comments
 (0)