Skip to content

Commit

Permalink
🎨 FileVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Mar 8, 2024
1 parent 3016469 commit deee8d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ string GetPackPathWithTryDelete(string fileEx)

private static readonly Lazy<string> _AppVersion4 = new(() =>
{
var v = new Version(AssemblyInfo.Version);
var v = new Version(AssemblyInfo.FileVersion);
static int GetInt32(int value) => value < 0 ? 0 : value;
return $"{GetInt32(v.Major)}.{GetInt32(v.Minor)}.{GetInt32(v.Build)}.{GetInt32(v.Revision)}";
});
Expand Down

0 comments on commit deee8d0

Please sign in to comment.