如何从文本开始创建 Windows 资源以嵌入 .NET 程序集中?

发布于 2024-07-07 09:26:35 字数 433 浏览 20 评论 0原文

我正在研究 嵌入自定义版本字符串不久前在程序集中使用过,文档建议的一种方法是嵌入 Windows 资源。

我看到创建 Windows 资源的唯一方法是使用“本机资源模板”,但该模板是一个二进制文件,不适合与 subwcrev。 有没有办法创建 Windows 资源作为 C# 项目的一部分,该项目以人类可编辑的文本文件开头,类似于 C++ 项目使用的 .rc 文件? 如果是这样,怎么办?

I was looking into embedding custom version strings using in assemblies a while back, and one approach that the documentation suggested was to embed a windows resource.

The only way I can see to create a windows resource is to use the 'Native Resource Template', but the template is a binary file that isn't suitable for using with subwcrev. Is there a way of creating a windows resource as part of a C# project that starts with a human-editable text file, similarly to the .rc files that C++ projects use? If so, how?

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

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

发布评论

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

评论(2

入画浅相思 2024-07-14 09:26:35

您似乎没有 VS2005 或 VS2008,并且正在寻找创建 Windows 资源。 是的,“.resources”文件是二进制文件,但您可以创建一个 XML 文件或文本文件,将其转换为该二进制文件。 查看 ResGen 的文档工具。 它可用于 .NET。

It seems that you don't have VS2005 or VS2008 and are looking to create windows resources. Yes, the ".resources" files are binary, but you can create a XML file or a text file which gets converted to this binary file. Take a look at the documentation of the ResGen tool. It is available with .NET.

指尖凝香 2024-07-14 09:26:35

在 VisualStudio 2005 或 2008(至少)中,您可以向项目添加新的“资源文件”项(位于“添加新项”对话框中的“常规”下)。 这是一个简单的 XML 文件,完全可以人工编辑 - 全部在 VisualStudio 内完成。 我不知道 SubWCRev 是如何工作的,但如果它操作文本文件,这应该可以做到。

In VisualStudio 2005 or 2008 (at least), you can add a new "Resources File" item to the project (located under "General" in the "Add new item" dialog). This is a simple XML file, which is perfectly human-editable - all within VisualStudio. I don't know how SubWCRev works, but if it manipulates text files, this should do it.

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