Update made automatically due to pressing build

This commit is contained in:
Li 2022-05-08 12:54:18 +12:00
parent ed55fa5f84
commit 58f081df7a
2 changed files with 2 additions and 2 deletions

View file

@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyFileVersion("1.6.2.11")]
[assembly: AssemblyVersion("1.6.2.11")]
[assembly: AssemblyFileVersion("1.3.0.0")]

View file

@ -50,6 +50,6 @@ lines = open(assembly_info, "r").readlines()
for i in range(0,len(lines)):
if lines[i].startswith("[assembly: AssemblyVersion(\""):
lines[i] = "[assembly: AssemblyVersion(\""+assembly_version+"\")]\r\n"
if lines[i].startswith("[assembly: AssemblyVersion(\""):
if lines[i].startswith("[assembly: AssemblyFileVersion(\""):
lines[i] = "[assembly: AssemblyFileVersion(\""+assembly_version+"\")]\r\n"
open(assembly_info, "w").writelines(lines)