AGS.Editor.AGSEditor.CreateMiniEXEForDebugging C# (CSharp) Метод

CreateMiniEXEForDebugging() приватный Метод

Creates a mini-exe that only contains the GAME.DTA file, in order to improve compile speed. All other files will be sourced from the game folder.
private CreateMiniEXEForDebugging ( CompileMessages errors ) : void
errors CompileMessages
Результат void
        private void CreateMiniEXEForDebugging(CompileMessages errors)
        {
            IBuildTarget target = BuildTargetsInfo.FindBuildTargetByName(BuildTargetDebug.DEBUG_TARGET_NAME);
            target.Build(errors, false);
            if (ExtraOutputCreationStep != null)
            {
                ExtraOutputCreationStep();
            }
        }