mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
try nativeaot again
This commit is contained in:
parent
bd2ba81b01
commit
9e62fc8415
8 changed files with 65 additions and 64 deletions
|
@ -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.11.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.11.0")]
|
||||
[assembly: AssemblyVersion("1.8.21.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.21.0")]
|
||||
|
|
|
@ -11,9 +11,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<TargetFramework>net7.0</TargetFramework>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<SelfContained>True</SelfContained>
|
||||
<PublishSingleFile>True</PublishSingleFile>
|
||||
<PublishReadyToRun>True</PublishReadyToRun>
|
||||
<PublishTrimmed>True</PublishTrimmed>
|
||||
<!--<PublishSingleFile>True</PublishSingleFile>-->
|
||||
<!--<PublishReadyToRun>True</PublishReadyToRun>-->
|
||||
<PublishAot>true</PublishAot>
|
||||
<!-- <PublishTrimmed>True</PublishTrimmed> -->
|
||||
<DefineConstants>OS_WINDOWS;ARCH_X86_64</DefineConstants>
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -1,5 +1,5 @@
|
|||
Package: hisp
|
||||
Version: 1.8.11
|
||||
Version: 1.8.21
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
</ContentWithTargetPath>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.7" />
|
||||
<PackageReference Include="MySqlConnector" Version="2.1.11" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.0" />
|
||||
<PackageReference Include="MySqlConnector" Version="2.2.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta2" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\Resources.resx">
|
||||
|
|
|
@ -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.11.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.11.0")]
|
||||
[assembly: AssemblyVersion("1.8.21.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.21.0")]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -12,8 +12,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<SelfContained>True</SelfContained>
|
||||
<!-- <PublishSingleFile>True</PublishSingleFile> -->
|
||||
<PublishReadyToRun>True</PublishReadyToRun>
|
||||
<PublishTrimmed>True</PublishTrimmed>
|
||||
<!-- <PublishReadyToRun>True</PublishReadyToRun> -->
|
||||
<!-- <PublishTrimmed>True</PublishTrimmed> -->
|
||||
<DefineConstants>OS_WINDOWS;ARCH_X86_64</DefineConstants>
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -1,50 +1,50 @@
|
|||
using System;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
public class Logger
|
||||
{
|
||||
private static void defaultCallbackFunc(bool error, string type, string text)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
private static Action<bool, string, string> logFunction = defaultCallbackFunc;
|
||||
|
||||
|
||||
public static void SetCallback(Action<bool, string, string> callback)
|
||||
{
|
||||
logFunction = callback;
|
||||
}
|
||||
|
||||
public static void ErrorPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 1)
|
||||
logFunction(true, "ERROR", text);
|
||||
}
|
||||
public static void WarnPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 2)
|
||||
logFunction(false, "WARN", text);
|
||||
}
|
||||
public static void HackerPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 3)
|
||||
logFunction(false, "HACK", text);
|
||||
}
|
||||
public static void InfoPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 4)
|
||||
logFunction(false, "INFO", text);
|
||||
}
|
||||
public static void DebugPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 5)
|
||||
logFunction(false, "DEBUG", text);
|
||||
using System;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
public class Logger
|
||||
{
|
||||
private static void defaultCallbackFunc(bool error, string type, string text)
|
||||
{
|
||||
return;
|
||||
}
|
||||
public static void CrashPrint(string text)
|
||||
{
|
||||
logFunction(true, "CRASH", text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static Action<bool, string, string> logFunction = defaultCallbackFunc;
|
||||
|
||||
|
||||
public static void SetCallback(Action<bool, string, string> callback)
|
||||
{
|
||||
logFunction = callback;
|
||||
}
|
||||
|
||||
public static void ErrorPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 1)
|
||||
logFunction(true, "ERROR", text);
|
||||
}
|
||||
public static void WarnPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 2)
|
||||
logFunction(false, "WARN", text);
|
||||
}
|
||||
public static void HackerPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 3)
|
||||
logFunction(false, "HACK", text);
|
||||
}
|
||||
public static void InfoPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 4)
|
||||
logFunction(false, "INFO", text);
|
||||
}
|
||||
public static void DebugPrint(string text)
|
||||
{
|
||||
if (ConfigReader.LogLevel >= 5)
|
||||
logFunction(false, "DEBUG", text);
|
||||
}
|
||||
public static void CrashPrint(string text)
|
||||
{
|
||||
logFunction(true, "CRASH", text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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.11.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.11.0")]
|
||||
[assembly: AssemblyVersion("1.8.21.0")]
|
||||
[assembly: AssemblyFileVersion("1.8.21.0")]
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue