我应该通过 nuget 还是独立安装程序进行 EF 4.2 更新?

发布于 2024-12-06 22:02:05 字数 104 浏览 1 评论 0原文

我还想知道当我使用独立安装程序时 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金橙橙 2024-12-13 22:02:05

您在这里问几个不同的问题。

通常,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文