Esempio n. 1
0
 public FileSystemLocationSelector(string[] paths, IFileSystem fileSystem, string basePath, ICodeFileLocationFilter filter = null)
 {
     this.paths      = paths;
     this.fileSystem = fileSystem;
     this.basePath   = basePath;
     this.filter     = filter;
 }
Esempio n. 2
0
 public void Unshadow(ICodeFileLocationFilter filter)
 {
     this.Filters.Add(new SubFilter()
     {
         Filter    = filter,
         Operation = Operation.Unshadow
     });
 }
Esempio n. 3
0
 public WorkspaceLocationSelector(IWorkspaceManagerBase workspaceManager, ICodeFileLocationFilter filter = null)
 {
     this.workspaceManager = workspaceManager;
     this.filter           = filter;
 }