public FolderConfig(SolutionFolderModel model)
 {
     _model   = model;
     Metadata = new Dictionary <string, object>
     {
         [MetadataKey.Model]   = model,
         [MetadataKey.IsMatch] = true
     };
 }
예제 #2
0
 public bool Equals(SolutionFolderModel other)
 {
     return(Equals(_element, other?._element));
 }
예제 #3
0
 public static FolderConfig ToOutputTarget(this SolutionFolderModel solutionFolder)
 {
     return(new FolderConfig(solutionFolder));
 }