BuildServerUploaderConsole.Program.CreateCopyToInstallerSteps C# (CSharp) Method

CreateCopyToInstallerSteps() private static method

private static CreateCopyToInstallerSteps ( bool debug ) : void
debug bool
return void
        private static void CreateCopyToInstallerSteps(bool debug)
        {
            if (!debug)
            {
                ProcessSteps.Add(new CopyFrbdkToReleaseFolder(Results));
                ProcessSteps.Add(new CopyBuiltEnginesToReleaseFolder(Results));
                ProcessSteps.Add(new ZipFrbdk(Results));
            }


            ProcessSteps.Add(new UnzipToInstaller(Results));
        }