Exemplo n.º 1
0
        protected internal override void Execute()
        {
            string appSourceFolderName          = UtilFramework.FolderName + "Application/App/";
            string appDestFolderName            = UtilFramework.FolderNameExternal + "Application/App/ExternalGit/";
            string databaseSourceFolderName     = UtilFramework.FolderName + "Application.Database/Database/";
            string databaseDestFolderName       = UtilFramework.FolderNameExternal + "Application.Database/Database/ExternalGit/";
            string websiteSourceFolderName      = UtilFramework.FolderName + "Application.Website/";
            string websiteDestFolderName        = UtilFramework.FolderNameExternal + "Application.Website/ExternalGit/";
            string websiteAngularDestFolderName = UtilFramework.FolderNameExternal + "Framework/Framework.Angular/application/src/Application.Website/";
            var    args = new ExternalPrebuildArgs {
                AppSourceFolderName          = appSourceFolderName,
                AppDestFolderName            = appDestFolderName,
                DatabaseSourceFolderName     = databaseSourceFolderName,
                DatabaseDestFolderName       = databaseDestFolderName,
                WebsiteSourceFolderName      = websiteSourceFolderName,
                WebsiteDestFolderName        = websiteDestFolderName,
                WebsiteAngularDestFolderName = websiteAngularDestFolderName
            };

            AppCli.ExternalPrebuild(args);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Override if this application is cloned into ExternalGit/ folder.
 /// </summary>
 /// <param name="args">Some utils for example to copy files.</param>
 protected virtual internal void ExternalPrebuild(ExternalPrebuildArgs args)
 {
 }