如何从 Wix 3.5 设置 .NET dll 的程序集版本?
我们使用 VS2010 和 Wix 3.5 我们创建 3 个合并模块,然后创建 1 个将所有合并模块捆绑在一起的 msi。 我们希望能够为合并模块中的每个 dll 分配程序集版本。一个合并模块中的所有 dll 可以具有相同的程序集版本,但每个合并模块将具有不同的版本。 我们尝试使用 Module 标记中的 Version 属性来执行此操作,但这并没有达到目的。我们看不到 dll 的任何版本号。 你如何做到这一点?
We are using VS2010 with Wix 3.5
We create 3 merge modules and then 1 msi that bundles all of the merge modules together.
We would like to be able to assign assembly versions to each dll in the merge modules. All of the dll's in one merge module can have the same assembly version, but each merge module will have a different version.
We tried doing this using the Version attribute within the Module tag but this did not do the trick. We cannot see any version number on the dll's.
How do you do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AssemblyInfo.cs 文件中包含的版本信息。每个 DLL 必须引用一个 AssemblyInfo.cs 才能使用一个版本。
Version info contained in AssemblyInfo.cs file. Each you DLL must have reference one AssemblyInfo.cs to use one version.