将 .NET 3.5 库与应用程序捆绑在一起,以便它可以在仅安装 .NET 2.0 的计算机上运行?
我想在仅安装 .NET Framework 2.0 的计算机上使用 LINQ。
我已经读过有关 LINQBridge 的内容。但我不能简单地将“复制本地”设置为引用的程序集,例如System.Core.dll
和System.Xml。 Linq.dll
来获取我需要的功能?
有什么缺点吗?这还被允许吗?
I want to use LINQ on machines with only .NET Framework 2.0 installed.
I've alread read about LINQBridge. But can't I simply set "copy local" to the referenced assemblies like System.Core.dll
and System.Xml.Linq.dll
to get the functionality I need?
Are there any drawbacks? Is this even allowed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.Net 3.5 实际上只是 .Net 2.0 加上一些额外的 dll。没有 3.5 运行时。如果包含所需的 dll,应用程序将毫无问题地运行。
来自以下有关 linq 桥评论的文章: http://www.albahari.com/nutshell/ linqbridge.aspx
.Net 3.5 is really just .Net 2.0 with some extra dlls. There is no 3.5 runtime. If you include the dlls you need, the application will run without any problems.
From the following article concerning the linq bridge comment: http://www.albahari.com/nutshell/linqbridge.aspx