英文:
Is there any visual editor for .resource files
问题
我已经使用resgen.exe从txt文件生成了二进制资源(.resources)文件。你知道是否有任何可视化编辑器用于已经生成的资源文件吗?我的情况是软件已交付给客户,他想要更新文件中的值。
链接:https://learn.microsoft.com/en-us/dotnet/framework/resources/creating-resource-files-for-desktop-apps#resources-in-resources-files
英文:
I've generated binary resource (.resources) file with resgen.exe from txt files. Do you know if there is any visual editor for already generated resource file. My case is that software was delivered to the client and he wants to update values in the file.
答案1
得分: 1
我找到了一个允许编辑.resource文件的工具,那就是Resource.Net。您可以通过以下链接找到该应用程序:https://fishcodelib.com/Resource.htm
英文:
Finally I found the tool which allows to edit .resource files, that is Resource.Net. You can find the app by following to the link https://fishcodelib.com/Resource.htm
答案2
得分: 0
你是否将.resx文件作为纯文本与软件一起提供?.resx文件通常被编译成程序集,并不能直接使用任何工具进行编辑。
您的客户需要对程序集进行反汇编,修改.resx文件,然后再次将其编译成程序集。
您可以将纯粹的.resx文件发送给客户,要求他们使用记事本或任何其他文本编辑器编辑这些文件,并将客户的更改合并回源代码。然后创建一个补丁并将其作为新版本交付给客户。
英文:
Are you delivering .resx files as plain text with the software? .resx files are compiled to assemblies usually and are not available for direct editing with any tool actually.
Your client have to disassemble assembly, make changes to .resx file and compile it back to assembly again.
You can send plain .resx file to your client, ask them to edit those files (with notepad.exe or any other text editor) and merge client changes back to your sources. Then create a patch and deliver to the client as new version
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论