如何重新分发 Managed DirectX?
我开发了一个使用 Microsoft.DirectX.Direct3D 命名空间的应用程序。 该应用程序在安装了托管 DirectX SDK 的计算机上运行,但不能在仅安装常用 DirectX 的计算机上运行。
具体来说,它抱怨“无法加载文件或程序集'Microsoft.DirectX.Direct3D [...]”。
重新分发必要程序集的最佳方法是什么?
I've developed an app which uses the Microsoft.DirectX.Direct3D namespace. The app runs on computers which have the Managed DirectX SDK installed, but not on those which have only the usual DirectX.
Specifically, it complains that it "Could not load file or assembly 'Microsoft.DirectX.Direct3D [...]".
What's the best way to redistribute the necessary assemblies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 Microsoft 提供的 mdx 可再发行安装程序即可。 它将安装本机 dx 以及托管扩展。
simply use the redistributable installer for mdx provided by microsoft. it will install the native dx as well as managed extensions.
如果您确实重新分发 MDX 库,请注意 Microsoft 不再支持此功能,并且已弃用此功能,取而代之的是 XNA。 您可能还想看看 SlimDX 作为替代方案
If you do redistribute the MDX libraries, be aware that this is no longer supported by Microsoft and has been deprecated in favour of XNA. You might also want to look at SlimDX as an alternative