Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add NuGet packages specific to x86 and x64. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dcff5160019c27262223dc57971cefc3 |
User & Date: | mistachkin 2011-10-03 05:18:03.328 |
References
2011-10-03
| ||
05:18 | • Ticket [40702c4acb] NuGet package does not contain System.Data.SQLite.Linq.dll assembly status still Open with 1 other change artifact: 172ce3cd61 user: mistachkin | |
Context
2011-10-03
| ||
05:29 | Add LINQ assembly to NuGet packages. Also, restore base NuSpec file wrongfully deleted in the previous commit. check-in: 4923bf755e user: mistachkin tags: trunk | |
05:18 | Add NuGet packages specific to x86 and x64. check-in: dcff516001 user: mistachkin tags: trunk | |
03:56 | Add cleaning tool to remove extraneous files. Also, refine list of source exclusions to prevent the copied test binaries from being archived. check-in: 5f531b06c5 user: mistachkin tags: trunk | |
Changes
Deleted SQLite.nuspec.
|
| < < < < < < < < < < < < < < < < < < |
Added SQLite.x64.nuspec.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?xml version="1.0" encoding="utf-8"?> <package> <metadata> <id>System.Data.SQLite.x64</id> <version>1.0.75.0</version> <authors>SQLite Development Team</authors> <description>The official SQLite database engine combined with a complete ADO.NET provider all rolled into a single mixed-mode assembly for x64.</description> <language>en-US</language> <projectUrl>http://system.data.sqlite.org/</projectUrl> <iconUrl>http://system.data.sqlite.org/images/sqlite32.png</iconUrl> <licenseUrl>http://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> </metadata> <files> <file src="bin\2008\x64\ReleaseStatic\System.Data.SQLite.dll" target="lib\net20" /> <file src="bin\2010\x64\ReleaseStatic\System.Data.SQLite.dll" target="lib\net40" /> </files> </package> |
Added SQLite.x86.nuspec.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?xml version="1.0" encoding="utf-8"?> <package> <metadata> <id>System.Data.SQLite.x86</id> <version>1.0.75.0</version> <authors>SQLite Development Team</authors> <description>The official SQLite database engine combined with a complete ADO.NET provider all rolled into a single mixed-mode assembly for x86.</description> <language>en-US</language> <projectUrl>http://system.data.sqlite.org/</projectUrl> <iconUrl>http://system.data.sqlite.org/images/sqlite32.png</iconUrl> <licenseUrl>http://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> </metadata> <files> <file src="bin\2008\Win32\ReleaseStatic\System.Data.SQLite.dll" target="lib\net20" /> <file src="bin\2010\Win32\ReleaseStatic\System.Data.SQLite.dll" target="lib\net40" /> </files> </package> |