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