Update prebuild script

This commit is contained in:
Li 2022-07-17 15:39:25 +12:00
parent e0fe30cca7
commit e554d41c94
6 changed files with 9 additions and 9 deletions

View file

@ -1,9 +1,7 @@
using HISP.Cli.Properties; using HISP.Server;
using HISP.Server;
using System; using System;
using System.IO; using System.IO;
using System.Threading; using System.Threading;
using System.Threading.Tasks;
namespace HISP.Cli namespace HISP.Cli
{ {

View file

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

View file

@ -218,6 +218,6 @@
<Target Name="PreBuild" BeforeTargets="PreBuildEvent"> <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="cd &quot;$(ProjectDir)..\&quot;&#xD;&#xA;py &quot;$(ProjectDir)..\prebuild.py&quot;" /> <Exec Command="&quot;$(ProjectDir)../prebuild.py&quot;" />
</Target> </Target>
</Project> </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 // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("1.7.43.0")] [assembly: AssemblyVersion("1.7.47.0")]
[assembly: AssemblyFileVersion("1.7.43.0")] [assembly: AssemblyFileVersion("1.7.47.0")]

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 // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.43.0")] [assembly: AssemblyVersion("1.7.47.0")]
[assembly: AssemblyFileVersion("1.7.43.0")] [assembly: AssemblyFileVersion("1.7.47.0")]

View file

@ -1,9 +1,11 @@
#!/usr/bin/python3 #!/usr/bin/python3
import os import os
import subprocess import subprocess
import time import time
import datetime import datetime
import binascii import binascii
os.chdir(os.path.dirname(os.path.realpath(__file__)))
# Updates version inside a AssemblyInfo.cs file # Updates version inside a AssemblyInfo.cs file
def update_asm_info(assemblyinfofile): def update_asm_info(assemblyinfofile):