适用于 32 位和 64 位应用程序的 C# 单一部署项目
我正在创建一个部署项目。 我希望它自动包含主要输出(.exe)的正确解决方案平台和正确的内容文件(32 位或 64 位),具体取决于解决方案平台。
目前,在构建安装项目时,安装项目会显示错误 TargetPlatform 与项目目标平台不兼容(例如 x86 与 x64)
根据某些线程,创建部署应用程序 32 位或 64 位项目的唯一方法是 分别为 32 位和 64 位创建单独的安装项目 有没有什么方法可以为所有目标 playform 创建一个部署项目?
问候,
I am creating a deployment project.
I would like it include automatically the correct Solution Platform for the primary output(.exe) and correct content files (32-bit or 64-bit) depending on the Solution platform.
Currently, the setup project displays and error when building a Setup project where its
TargetPlatform in incompatible with the projects target plat form (e.g. x86 vs. x64)
According to some threads, the only way to create deployment application 32-bit or 64-bit projects is to
create separate Setup projects for the 32 and 64 -bit respectively
Are there any ways we could just create a single deployment projects for all target playform?
regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这就是“任何 CPU”配置的用途(而不是 x86 或 x64)。我通常使用 x86 进行调试,因为编辑并继续在 64 位模式下被禁用。
I think that's what "Any CPU" config is for (rather than x86 or x64). I usually debug with x86 though since Edit and Continue is disabled in 64 bit mode.