在 Mono 中定义自定义库版本
有谁在使用 gmcs 命令编译时如何设置自定义库版本?基本上,当我运行“monop -r mydll.dll”时,它应该显示 Version=MyVersion(例如:1.0.1.0)。
欢迎任何帮助, 提前致谢!
恩里克
Does anyone how to set a custom library version, when compiling with the gmcs command? Basically, when I would run "monop -r mydll.dll" it should say Version=MyVersion(e.g.: 1.0.1.0).
Any help is welcome,
Thanks in advance!
Henrique
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,显然 1.0.1.0 是 Mono 中的默认 dll 版本,或者类似的版本。我找到了一个 xml 配置文件,其名称为 dll,其中有一个参数可以定义您的库版本。所以现在,当运行
monop2 -r:mydll.dll
时,它会为我提供自定义版本。无论如何,谢谢!Yeah, apparently 1.0.1.0 is the default dll version in Mono, or something like that. I found out a xml configuration file, with the name o the dll, where there is a parameter that you can define you're library version. So now, when a run
monop2 -r:mydll.dll
, it gives me my custom version. Thanks anyway!我不明白......如果我运行
输出
,这就是你想要实现的......或者不是?
I do not understand...if I run
the output is
and it's what you want to achieve...or not?