WriteReferencesNotFoundFile() публичный статический Метод

public static WriteReferencesNotFoundFile ( string folder ) : void
folder string
Результат void
Пример #1
0
        private void DeployFilesToRoot(
            string destinationFolder,
            bool emitAssemblyList,
            Federation federation)
        {
            Markup.WriteReferencesNotFoundFile(destinationFolder);

            string sourcePath = Assembly.GetEntryAssembly().Location;

            sourcePath = Path.GetDirectoryName(sourcePath);
            string basePath = sourcePath;

            sourcePath = Path.Combine(sourcePath, @"Web");
            if (!Directory.Exists(sourcePath))
            {
                return;
            }

            sourcePath = Path.GetFullPath(sourcePath);
            FileUtilities.CopyDirectory(sourcePath, destinationFolder);

            StampOverviewHtmlWithDate(destinationFolder);
            if (emitAssemblyList)
            {
                ToggleSolutionExplorerOff(destinationFolder);
            }

            SetExternalUrlMap(destinationFolder, federation);

            DeployBin(basePath, destinationFolder);
        }
Пример #2
0
 private void DeployFilesToRoot(
     string destinationFolder,
     bool emitAssemblyList,
     Federation federation)
 {
     Markup.WriteReferencesNotFoundFile(destinationFolder);
 }
Пример #3
0
        private void DeployFilesToRoot(string destinationFolder)
        {
            Markup.WriteReferencesNotFoundFile(destinationFolder);

            string sourcePath = Assembly.GetEntryAssembly().Location;

            sourcePath = Path.GetDirectoryName(sourcePath);
            string basePath = sourcePath;

            sourcePath = Path.Combine(sourcePath, @"Web");
            if (!Directory.Exists(sourcePath))
            {
                return;
            }

            sourcePath = Path.GetFullPath(sourcePath);
            FileUtilities.CopyDirectory(sourcePath, destinationFolder);

            StampOverviewHtmlWithDate(destinationFolder);

            DeployBin(basePath, destinationFolder);
        }