关闭警告CS1607

编程入门 行业动态 更新时间:2024-10-27 03:26:18
本文介绍了关闭警告CS1607的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个通用的汇编文件,其中我曾尝试关闭警告:

I have a common assembly file where I have tried to turn off a warning:

警告CS1607:汇编生成-版本为文件版本指定的 2.0.4.121106不是正常的 major.minor.build.revision格式

warning CS1607: Assembly generation -- The version '2.0.4.121106' specified for the 'file version' is not in the normal 'major.minor.build.revision' format

我已经做到了,但它不起作用:

I have done this but it isn't working:

#pragma warning disable 1607 [assembly: AssemblyVersion("2.0.*")] [assembly: AssemblyFileVersion("2.0.4.121106")] [assembly: AssemblyInformationalVersion("2.0.0.0")] #pragma warning restore 1607

那么在代码中有什么方法可以做到这一点?

So is there some way to do this in the code?

推荐答案

出现此错误的原因是因为修订号大于65534。我发现对我的解决方案研究相同的问题是没有办法(或很简单) /正确)以禁止显示此警告。但是为了使我们能够解决它,我们发现可以在AssemblyVersion.cs中以您的版本为示例设置以下代码:

The reason why you are getting the error is because the revision number is greater than 65534. And I found researching the same problem for my solution is that there is no way (or easy/correct) to suppress this warning. But in order for us to get around it we found that we could set the following code in out AssemblyVersion.cs with your versions as an example:

[assembly: AssemblyFileVersion("2.0.0.0")] [assembly: AssemblyInformationalVersion("2.0.4.121106")]

当查看属性> DLL的详细信息时,它将成为我们的dll 2.0.4.121106的产品版本。

This will make it the Product Version of our dlls "2.0.4.121106" when viewing the details of the Properties > Details of our dlls.

更多推荐

关闭警告CS1607

本文发布于:2023-10-16 06:10:42,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1496718.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!