Example #1
0
        public ServiceFolders Clone()
        {
            var result = new ServiceFolders();

            foreach (var kvp in this.ToDictionary())
            {
                result[kvp.Key] = (FullPath)kvp.Value;
            }
            return(result);
        }
Example #2
0
 public Deployment()
 {
     Folders = new ServiceFolders();
 }