コード例 #1
0
        public UnityDllPublishCommand()
        {
            var cfg = new DllPublishConfigModel();

            _sourcesDir = cfg.VO.ilDevelopDir;
            _resDir     = FileSystem.CombineDirs(true, cfg.VO.resDir, PathUtil.PlatformDirName, "dll");
            if (false == Directory.Exists(_resDir))
            {
                Directory.CreateDirectory(_resDir);
            }
            OutputAssemblyPath = FileSystem.CombinePaths(_resDir, "ILProject.dll");
        }
コード例 #2
0
ファイル: EditorDLL.cs プロジェクト: likehuihui/EasyILRuntime
 private void OnEnable()
 {
     _cfg = new DllPublishConfigModel();
 }