打包 检查安装华佗
parent
73ec103783
commit
8fc0080bec
|
|
@ -10,6 +10,7 @@ using System.Collections.Generic;
|
|||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using HybridCLR.Editor.Installer;
|
||||
using Obfuz.Settings;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
|
@ -92,6 +93,15 @@ internal class BatchBuild
|
|||
PlayerSettings.SetScriptingDefineSymbolsForGroup(currentTargetGroup, _oldDefines);
|
||||
}
|
||||
|
||||
public static void CheckAndInstallHybridCLR()
|
||||
{
|
||||
var installer = new InstallerController();
|
||||
if (!installer.HasInstalledHybridCLR())
|
||||
{
|
||||
installer.InstallDefaultHybridCLR();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 批处理构建Resources和Player
|
||||
/// jenkins打包新包时使用该方法
|
||||
|
|
|
|||
Loading…
Reference in New Issue