Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3016469 commit deee8d0Copy full SHA for deee8d0
1 file changed
src/BD.WTTS.Client.Tools.Publish/Commands/IDotNetPublishCommand.cs
@@ -608,7 +608,7 @@ string GetPackPathWithTryDelete(string fileEx)
608
609
private static readonly Lazy<string> _AppVersion4 = new(() =>
610
{
611
- var v = new Version(AssemblyInfo.Version);
+ var v = new Version(AssemblyInfo.FileVersion);
612
static int GetInt32(int value) => value < 0 ? 0 : value;
613
return $"{GetInt32(v.Major)}.{GetInt32(v.Minor)}.{GetInt32(v.Build)}.{GetInt32(v.Revision)}";
614
});
0 commit comments