Try fix crash handler

This commit is contained in:
Li 2022-11-11 19:07:07 +13:00
parent a7c5048f14
commit e9fdf1ff6f
6 changed files with 23 additions and 16 deletions

View file

@ -1,5 +1,4 @@
using HISP.Cli.Properties;
using HISP.Server;
using HISP.Server;
using System;
using System.IO;
using System.Threading;
@ -44,11 +43,22 @@ namespace HISP.Cli
public static void OnShutdown()
{
if(fs != null)
{
fs.Close();
fs.Dispose();
}
if(sw != null)
{
sw.Close();
sw.Dispose();
}
shutdownHandle.Set();
}
public static void LogToFile(bool error, string type,string text)
{
sw.WriteLineAsync(DateTime.Now.ToString("MM-dd-YYYY HH:mm:dd") + ": [" + type + "] " + text + sw.NewLine);
sw.WriteLine(DateTime.Now.ToString("MM-dd-yyyy HH:mm:dd") + ": [" + type + "] " + text + sw.NewLine);
}
public static void LogStdout(bool error, string type, string text)
{
@ -56,9 +66,9 @@ namespace HISP.Cli
LogToFile(error, type, text);
if (error)
Console.Error.WriteAsync(DateTime.Now.ToString("MM-dd-YYYY HH:mm:dd")+": [" + type + "] " + text + Console.Error.NewLine);
Console.Error.WriteAsync(DateTime.Now.ToString("MM-dd-yyyy HH:mm:dd")+": [" + type + "] " + text + Console.Error.NewLine);
else
Console.Out.WriteAsync(DateTime.Now.ToString("MM-dd-YYYY HH:mm:dd") + ": [" + type + "] " + text + Console.Out.NewLine);
Console.Out.WriteAsync(DateTime.Now.ToString("MM-dd-yyyy HH:mm:dd") + ": [" + type + "] " + text + Console.Out.NewLine);
}

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.8.22.0")]
[assembly: AssemblyFileVersion("1.8.22.0")]
[assembly: AssemblyVersion("1.8.23.0")]
[assembly: AssemblyFileVersion("1.8.23.0")]

View file

@ -11,12 +11,9 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<TargetFramework>net7.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>True</SelfContained>
<PublishTrimmed>True</PublishTrimmed>
<PublishSingleFile>True</PublishSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
<PublishTrimmed>True</PublishTrimmed>
<DefineConstants>OS_WINDOWS;ARCH_X86_64</DefineConstants>
</PropertyGroup>
</Project>

View file

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

View file

@ -30,8 +30,8 @@ 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.8.22.0")]
[assembly: AssemblyFileVersion("1.8.22.0")]
[assembly: AssemblyVersion("1.8.23.0")]
[assembly: AssemblyFileVersion("1.8.23.0")]

View file

@ -30,8 +30,8 @@ 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.8.22.0")]
[assembly: AssemblyFileVersion("1.8.22.0")]
[assembly: AssemblyVersion("1.8.23.0")]
[assembly: AssemblyFileVersion("1.8.23.0")]