You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A version number such as [assembly:AssemblyVersion("1.2.*")] specifies 1 as the major version, 2 as the minor version, and accepts the default build and revision numbers.
Actual Behavior:
Warning [CS7035]: The specified version string does not conform to the recommended format - major.minor.build.revision gets thrown.
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
project .csproj with following
PropertyGroup
items:Expected Behavior:
No warnings get thrown because of this wildcard as documented on https://docs.microsoft.com/en-us/dotnet/api/system.reflection.assemblyversionattribute:
Actual Behavior:
Warning
[CS7035]: The specified version string does not conform to the recommended format - major.minor.build.revision
gets thrown.The text was updated successfully, but these errors were encountered: