Ejemplo 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;
 }
Ejemplo n.º 2
0
 public void Unshadow(ICodeFileLocationFilter filter)
 {
     this.Filters.Add(new SubFilter()
     {
         Filter    = filter,
         Operation = Operation.Unshadow
     });
 }
Ejemplo n.º 3
0
 public WorkspaceLocationSelector(IWorkspaceManagerBase workspaceManager, ICodeFileLocationFilter filter = null)
 {
     this.workspaceManager = workspaceManager;
     this.filter           = filter;
 }