|
@@ -21,6 +21,10 @@ namespace GFGEditor
|
|
|
|
|
|
string hotfixDllSrcDir = SettingsUtil.GetHotUpdateDllsOutputDirByTarget(target);
|
|
|
string hotfixAssembliesDstDir = LauncherConfig.DllDirHotfix;
|
|
|
+ if (!Directory.Exists(LauncherConfig.DllDirHotfix))
|
|
|
+ {
|
|
|
+ Directory.CreateDirectory(LauncherConfig.DllDirHotfix);
|
|
|
+ }
|
|
|
foreach (var dll in SettingsUtil.HotUpdateAssemblyFiles)
|
|
|
{
|
|
|
string dllPath = $"{hotfixDllSrcDir}/{dll}";
|
|
@@ -36,6 +40,10 @@ namespace GFGEditor
|
|
|
var target = EditorUserBuildSettings.activeBuildTarget;
|
|
|
string aotAssembliesSrcDir = SettingsUtil.GetAssembliesPostIl2CppStripDir(target);
|
|
|
string aotAssembliesDstDir = LauncherConfig.DllDirAOT;
|
|
|
+ if(!Directory.Exists(LauncherConfig.DllDirAOT))
|
|
|
+ {
|
|
|
+ Directory.CreateDirectory(LauncherConfig.DllDirAOT);
|
|
|
+ }
|
|
|
|
|
|
foreach (var dll in HotUpdateCodeLoader.AOTMetaAssemblyNames)
|
|
|
{
|