|
@@ -23,7 +23,7 @@ namespace HybridCLR
|
|
|
/// </summary>
|
|
|
public static List<string> MonoHotUpdateDllNames { get; } = new List<string>()
|
|
|
{
|
|
|
- "HotFix.dll",
|
|
|
+
|
|
|
};
|
|
|
|
|
|
/// <summary>
|
|
@@ -32,7 +32,7 @@ namespace HybridCLR
|
|
|
public static List<string> AllHotUpdateDllNames { get; } = MonoHotUpdateDllNames.Concat(new List<string>
|
|
|
{
|
|
|
// 这里放除了s_monoHotUpdateDllNames以外的脚本不需要挂到资源上的dll列表
|
|
|
- "HotFix2.dll",
|
|
|
+ "Game.HotUpdate.dll",
|
|
|
}).ToList();
|
|
|
|
|
|
public static List<string> AOTMetaDlls { get; } = new List<string>()
|
|
@@ -40,6 +40,8 @@ namespace HybridCLR
|
|
|
"mscorlib.dll",
|
|
|
"System.dll",
|
|
|
"System.Core.dll", // 如果使用了Linq,需要这个
|
|
|
+ "ThirdParty.dll",
|
|
|
+ "Game.Launcher.dll",
|
|
|
};
|
|
|
|
|
|
public static List<string> AssetBundleFiles { get; } = new List<string>
|