博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过NuGet获取sqlite对应的.net的dll
阅读量:4596 次
发布时间:2019-06-09

本文共 2560 字,大约阅读时间需要 8 分钟。

 

直接在Package Manager Console中执行命令,会自动安装依赖项的

Install-Package System.Data.SQLite

 

安装完成之后,一共安装4个dll

Attempting to gather dependency information for package 'System.Data.SQLite.1.0.103' with respect to project 'ClientApp', targeting '.NETFramework,Version=v4.5.2'

Attempting to resolve dependencies for package 'System.Data.SQLite.1.0.103' with DependencyBehavior 'Lowest'
Resolving actions to install package 'System.Data.SQLite.1.0.103'
Resolved actions to install package 'System.Data.SQLite.1.0.103'
Adding package 'EntityFramework.6.0.0' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'EntityFramework.6.0.0' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'EntityFramework.6.0.0' to 'packages.config'
Executing script file 'F:\CodeForGitBlit\YunClient\packages\EntityFramework.6.0.0\tools\install.ps1'

Type 'get-help EntityFramework' to see all available Entity Framework commands.

Successfully installed 'EntityFramework 6.0.0' to ClientApp
Adding package 'System.Data.SQLite.Core.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.Core.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.Core.1.0.103' to 'packages.config'
Successfully installed 'System.Data.SQLite.Core 1.0.103' to ClientApp
Adding package 'System.Data.SQLite.EF6.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.EF6.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.EF6.1.0.103' to 'packages.config'
Executing script file 'F:\CodeForGitBlit\YunClient\packages\System.Data.SQLite.EF6.1.0.103\tools\net451\install.ps1'
Successfully installed 'System.Data.SQLite.EF6 1.0.103' to ClientApp
Adding package 'System.Data.SQLite.Linq.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.Linq.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.Linq.1.0.103' to 'packages.config'
Successfully installed 'System.Data.SQLite.Linq 1.0.103' to ClientApp
Adding package 'System.Data.SQLite.1.0.103', which only has dependencies, to project 'ClientApp'.
Adding package 'System.Data.SQLite.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.1.0.103' to folder 'F:\CodeForGitBlit\YunClient\packages'
Added package 'System.Data.SQLite.1.0.103' to 'packages.config'
Successfully installed 'System.Data.SQLite 1.0.103' to ClientApp

 

4个红色的都是依赖项

 

转载于:https://www.cnblogs.com/chucklu/p/5895464.html

你可能感兴趣的文章
TOJ 2452 Ultra-QuickSort
查看>>
ZOJ 2067 White Rectangles
查看>>
windows基础应用(word)
查看>>
Linux索引节点(Inode)用满导致空间不足
查看>>
【Android】Notification
查看>>
(转)数据库 schema含义
查看>>
E2E测试神器nightwatch.js使用
查看>>
抽象工厂模式(Abstract Factory)
查看>>
FlashDevelop 发布SWC
查看>>
MD5加密解密
查看>>
Android 图文数据JSON解析,金山词霸每日一句API的调用
查看>>
Android开发 代替 “(XXXX)findViewById()”
查看>>
MySQL RR隔离 读一致性
查看>>
监控持有sql和被堵塞的sql
查看>>
zabbix 监控jmx 需要--enable-java
查看>>
pl/sql 在一个程序块里打印日志输出到表格
查看>>
Python目录操作
查看>>
静态内部类实现 单例模式
查看>>
基于Matlab的FIR滤波器设计与实现
查看>>
Spring Security 与 OAuth2 介绍
查看>>