我应该通过 nuget 还是独立安装程序进行 EF 4.2 更新?
我还想知道当我使用独立安装程序时 GAC 如何工作? 它会覆盖项目中现有的程序集吗? 如果我有 Express 版本,而 2010 没有 nuget,我如何最好地利用这些包而不破坏我现有的东西?
I would also like to know how the GAC works when i am using a standalone installer ?
Will it override my existing assembly int the project ?
if i have the express edition vs 2010 which does not have nuget ,how do i best make use of these packages without breaking my existing stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在这里问几个不同的问题。
通常,GAC 始终会覆盖给定版本的程序集的 bin 文件夹。但是,如果 bin 程序集具有不同的版本,并且您的配置文件指向该版本,它将使用该版本而不是 GAC。
对于没有 NuGet VSIX 的 VS Express,使用 NuGet 肯定会有点困难。您需要获取 NuGet 命令行工具,并运行 install 命令来下载软件包,然后您可以在项目中手动引用它。
You're asking several different questions here.
Generally, the GAC always overrides the bin folder for a given version of an assembly. However, if the bin assembly has a different version, and your config file points to that version, it will use that instead of the GAC.
With VS Express that doesn't have the NuGet VSIX, using NuGet is definitely a bit harder. You need to get the NuGet command line tool, and run the install command to download packages, which you can then manually reference in your projects.