26 lines
930 B
C#
26 lines
930 B
C#
namespace TH1_Logic.Hotfix
|
|
{
|
|
public static class HotfixManifest
|
|
{
|
|
public const string BaseAppVersion = "0.1.0";
|
|
public const string HotfixManifestVersion = "0.1.0";
|
|
public const string MinCompatibleAppVersion = "0.1.0";
|
|
|
|
public const string RootFolderName = "HybridCLR";
|
|
public const string AotMetadataFolderName = "AOTAssemblies";
|
|
public const string HotfixDllFolderName = "HotfixDlls";
|
|
|
|
public const string HotfixAssemblyName = "TH1.Hotfix";
|
|
public const string HotfixAssemblyFileName = HotfixAssemblyName + ".dll.bytes";
|
|
public const string EntryTypeName = "TH1_Hotfix.HotfixEntry";
|
|
public const string EntryMethodName = "Initialize";
|
|
|
|
public static readonly string[] AotMetadataAssemblyFileNames =
|
|
{
|
|
"mscorlib.dll.bytes",
|
|
"System.dll.bytes",
|
|
"System.Core.dll.bytes",
|
|
};
|
|
}
|
|
}
|