mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Update prebuild script
This commit is contained in:
parent
e0fe30cca7
commit
e554d41c94
6 changed files with 9 additions and 9 deletions
|
@ -1,9 +1,7 @@
|
|||
using HISP.Cli.Properties;
|
||||
using HISP.Server;
|
||||
using HISP.Server;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace HISP.Cli
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: hisp
|
||||
Version: 1.7.43
|
||||
Version: 1.7.47
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
|
|
|
@ -218,6 +218,6 @@
|
|||
|
||||
|
||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
||||
<Exec Command="cd "$(ProjectDir)..\"
py "$(ProjectDir)..\prebuild.py"" />
|
||||
<Exec Command=""$(ProjectDir)../prebuild.py"" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
|
|
@ -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.43.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.43.0")]
|
||||
[assembly: AssemblyVersion("1.7.47.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.47.0")]
|
||||
|
|
|
@ -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.43.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.43.0")]
|
||||
[assembly: AssemblyVersion("1.7.47.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.47.0")]
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import time
|
||||
import datetime
|
||||
import binascii
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
|
||||
# Updates version inside a AssemblyInfo.cs file
|
||||
def update_asm_info(assemblyinfofile):
|
||||
|
|
Loading…
Add table
Reference in a new issue