update prebuild again

This commit is contained in:
Li 2022-07-17 15:43:13 +12:00
parent e554d41c94
commit f2d36bd73a
5 changed files with 8 additions and 7 deletions

View file

@ -1,5 +1,5 @@
Package: hisp
Version: 1.7.47
Version: 1.7.48
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
Maintainer: Li
Homepage: https://islehorse.com

View file

@ -218,6 +218,6 @@
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="&quot;$(ProjectDir)../prebuild.py&quot;" />
<Exec Command="$(ProjectDir)/prebuild.py" />
</Target>
</Project>

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: AssemblyVersion("1.7.47.0")]
[assembly: AssemblyFileVersion("1.7.47.0")]
[assembly: AssemblyVersion("1.7.48.0")]
[assembly: AssemblyFileVersion("1.7.48.0")]

View file

@ -5,7 +5,8 @@ import subprocess
import time
import datetime
import binascii
os.chdir(os.path.dirname(os.path.realpath(__file__)))
os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
# Updates version inside a AssemblyInfo.cs file
def update_asm_info(assemblyinfofile):

View file

@ -31,5 +31,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: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.47.0")]
[assembly: AssemblyFileVersion("1.7.47.0")]
[assembly: AssemblyVersion("1.7.48.0")]
[assembly: AssemblyFileVersion("1.7.48.0")]