예제 #1
0
        public Func <string, ProjectType, string> GetCreateNet5FolderHierarchyAction(string empty)
        {
            Func <string, ProjectType, string> func = (string projectDir, ProjectType projectType) =>
            {
                FolderUpdate folderUpdate = new FolderUpdate(projectDir, projectType);
                return(folderUpdate.Run());
            };

            return(func);
        }
예제 #2
0
            static string func(string projectDir, ProjectType projectType)
            {
                FolderUpdate folderUpdate = new FolderUpdate(projectDir, projectType);

                return(folderUpdate.Run());
            }