如何将嵌入式清单移动到外部 .manifest 文件?

发布于 2024-10-17 09:59:28 字数 116 浏览 1 评论 0原文

我有一个现有的 C# 应用程序,它有一个嵌入到 exe 中的清单文件。如何更改它以使用将包含在 setup.msi 中的外部清单?

我只能看到用于创建没有清单的应用程序或嵌入清单的选项(在项目属性中)。

I have an existing C# application that has a manifest file which is embedded into the exe. How do I change this to use an external manifest that will be included in the setup.msi?

I can only see options (in the Project Properties) to create the application without a manifest, or to embed one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独岁月 2024-10-24 09:59:28

使用 MT 实用程序(Visual Studio 的一部分)来操作清单文件。

来自在线帮助:

> To extract manifest out of a dll:
mt.exe -inputresource:dll_with_manifest.dll;#1 -out:extracted.manifest

Use the MT utility (part of Visual Studio) to manipulate manifest files.

From the online help:

> To extract manifest out of a dll:
mt.exe -inputresource:dll_with_manifest.dll;#1 -out:extracted.manifest
夜清冷一曲。 2024-10-24 09:59:28

在解决方案资源管理器中,尝试将清单的生成操作更改为内容。

In solution explorer, try changing the Build Action for the manifest to Content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文