如何使用 .NET Framework 2.0 重新分发 Windows Imaging Component?
我有一个 .NET Framework 2.0 应用程序,并且想要使用 Windows 成像组件。 由于我的应用程序是 WinForms 应用程序,并将通过 MSI 安装程序重新分发给用户,因此我正在尝试找出执行此操作的最佳方法。
我看到有几个选择: 1) 跳过 .NET 2.0 并在 .NET 3.0 上构建,其中包括 Windows 成像组件 2) 找到一种方法将 WIC 组件包含在我的安装
程序中?
I have a .NET Framework 2.0 app and would like to use the Windows Imaging Component. Since my application is a WinForms app and will be redistributed to users via an MSI installer I'm trying to figure out the best way to do this.
I see a couple of options:
1) Skip .NET 2.0 and build on .NET 3.0 which includes the Windows Imaging Component
2) Figure out a way to include the WIC component with my installer
Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WIC 内置于 Windows Vista 中,因此您无需将其分发给 Vista 计算机。 对于 XP,可以从 Microsoft 这里。
WIC is built into Windows Vista so you don't need to distribute it for Vista machines. For XP it is available as download from Microsoft here.
我不熟悉 WIC,但您可以将引用上的“复制本地”属性设置为 true 吗? 我假设当您创建 MSI 时,您就可以获得所需的程序集。
我的解决方案可能只是建立在较新的框架上。 我相信如果有必要的话,MSI可以设置来安装它。
I'm not familiar with WIC but can you just set the Copy Local property on the reference to true? I would assume that the needed assembly would then be available to you when you create your MSI.
My solution would probably just be to build on the newer framework. I believe MSI can be setup to install it if necessary.