Exemplo n.º 1
0
        public static ProjectItem AddFileToProject(string projectName,
                                                   string fileName,
                                                   string customTool = "TextTemplatingFileGenerator")
        {
            ProjectItem projectItem = null;

            RetryUtil.RetryOnException(() =>
            {
                var project = GetSolutionProjects().First(n => n.Name == projectName);

                var path = Path.GetFullPath(fileName);

                projectItem = project.ProjectItems.AddFromFile(path);

                var property = projectItem.Properties.Item("CustomTool");

                if (property == null)
                {
                    throw new ArgumentException("The property CustomTool was not found.");
                }

                property.Value = customTool;
            });

            return(projectItem);
        }
Exemplo n.º 2
0
 public static void RemoveFileFromProject(string fileName)
 {
     RetryUtil.RetryOnException(() =>
     {
         var projectItem = dte.Solution.FindProjectItem(fileName);
         projectItem?.Remove();
     });
 }
Exemplo n.º 3
0
 public static void SaveFileAutomaticallyRunCustomTool(ProjectItem item)
 {
     RetryUtil.RetryOnException(() =>
     {
         item.Open();
         item.Save();
     });
 }
Exemplo n.º 4
0
        private static IEnumerable <Project> GetSolutionProjects()
        {
            IEnumerable <Project> projects = null;

            RetryUtil.RetryOnException(() => { projects = dte.Solution.Projects.Cast <Project>(); });

            return(projects);
        }
Exemplo n.º 5
0
        public static string GetProjectDirectory(string projectName)
        {
            string directory = null;

            RetryUtil.RetryOnException(() =>
            {
                var projectFilePath = GetSolutionProjects().First(p => p.Name.Contains(projectName))?.FullName;
                directory           = Path.GetDirectoryName(projectFilePath);
            });

            return(directory);
        }
        public static DTE GetCurrentDte()
        {
            DTE dte = null;

            RetryUtil.RetryOnException(() =>
            {
                dte = GetDtes().First(x => x.Solution?.FileName.Contains("T4.FileManager.VisualStudio") == true);
                dte.MainWindow.Activate();
                dte.MainWindow.SetFocus();
            });

            return(dte);
        }
Exemplo n.º 7
0
        public static string GetCustomToolByFileName(string name, string projectName)
        {
            string customTool = null;

            RetryUtil.RetryOnException(() =>
            {
                var item = dte.Solution.FindProjectItem(name);
                if (item != null)
                {
                    customTool = item.Properties.Item("CustomTool").Value;
                }
            });

            return(customTool);
        }
Exemplo n.º 8
0
        public static void CleanupFiles(string[] projectNames, string[] extensions)
        {
            RetryUtil.RetryOnException(() =>
            {
                var cleanupItems = new List <ProjectItem>();

                foreach (var projectName in projectNames)
                {
                    var project = GetSolutionProjects().First(p => p.Name == projectName);

                    var items = GetAllProjectItemsRecursive(project.ProjectItems);

                    foreach (var extension in extensions)
                    {
                        cleanupItems.AddRange(items.Where(n => n.Name.EndsWith(extension)));
                    }
                }

                foreach (var item in cleanupItems)
                {
                    var fullPath = GetProjectItemFullPath(item);

                    item.Remove();

                    if (File.Exists(fullPath))
                    {
                        File.Delete(fullPath);
                    }
                }

                foreach (var projectName in projectNames)
                {
                    var projectPath = GetProjectDirectory(projectName);
                    foreach (var extension in extensions)
                    {
                        foreach (var file in Directory.EnumerateFiles(projectPath,
                                                                      $"*{extension}",
                                                                      SearchOption.AllDirectories))
                        {
                            File.Delete(file);
                        }
                    }
                }
            });
        }