/// <summary> /// Copy ConfigServer.json to publish folder. /// </summary> internal static void ConfigServerPublish() { string folderNamePublish = UtilFramework.FolderName + "Application.Server/bin/Debug/net5.0/publish/"; string fileNameSource = UtilFramework.FolderName + "ConfigServer.json"; string fileNameDest = folderNamePublish + "ConfigServer.json"; UtilCli.FileCopy(fileNameSource, fileNameDest); }
/// <summary> /// Copy folder Application.Website/Shared/CustomComponent/ /// </summary> private static void BuildAngularInit() { // Delete folder Application.Website/ string folderNameApplicationWebSite = UtilFramework.FolderName + "Framework/Framework.Angular/application/src/Application.Website/"; UtilCli.FolderDelete(folderNameApplicationWebSite); // Copy folder CustomComponent/ string folderNameSource = UtilFramework.FolderName + "Application.Website/Shared/CustomComponent/"; string folderNameDest = UtilFramework.FolderName + "Framework/Framework.Angular/application/src/Application.Website/Shared/CustomComponent/"; UtilCli.FolderCopy(folderNameSource, folderNameDest, "*.*", true); // Copy empty index.html file UtilCli.FileCopy(UtilFramework.FolderName + "Framework/Framework.Angular/application/src/index.html", UtilFramework.FolderName + "Framework/Framework.Angular/application/src/Application.Website/dist/index.html"); // Ensure folder exists now UtilFramework.Assert(Directory.Exists(folderNameApplicationWebSite)); }