示例#1
0
 public ClearLoading(
     IWorkingDirectorySubPaths paths,
     ILogger logger)
 {
     _paths  = paths;
     _logger = logger;
 }
 public ProfileDirectories(
     IWorkingDirectoryProvider paths,
     IWorkingDirectorySubPaths workingDirectorySubPaths,
     IProfileIdentifier ident)
 {
     Paths = paths;
     WorkingDirectorySubPaths = workingDirectorySubPaths;
     Ident = ident;
 }
 public ExtractInfoFromProject(
     IFileSystem fileSystem,
     IWorkingDirectorySubPaths paths,
     ICopyDirectory copyDirectory,
     IQueryExecutablePath queryExecutablePath,
     ILogger logger)
 {
     _FileSystem          = fileSystem;
     _Paths               = paths;
     _CopyDirectory       = copyDirectory;
     _QueryExecutablePath = queryExecutablePath;
     _Logger              = logger;
 }