Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Visual Studio 2010 中开发了该项目。其他 PC 不支持该 exe 文件。要安装哪个dotnetframework?除了 dotnetframework 还需要其他要求吗?
您确定它不是您在编译期间指定的 CPU 类型(x86 与 x64 CPU)。如果您以 64 位编译并且用户只有 32 位处理器 (x86),则您的代码将无法运行。
.Net Framework 应该可以在任何基于 PC 的系统上运行,但请确保将其包含在您的部署或安装包中。(您可以在您的包中提供 Excel、.NET Framework 和许多其他包。)
您还应该尝试找出您的用户收到的错误消息——这将为您指明正确的方向。