Ejemplo n.º 1
0
        public void Start(string projectName)
        {
            // TODO: Should scan all the files in the project folder
            // and create an initial entry.

            Project       project      = _repository.LoadProject(projectName);
            IFileChangeBL fileChangeBL = new FileChangeBL();

            _fileWatcher = _fileWatcherFactory.Create(_repository, fileChangeBL, project);
            _fileWatcher.Start();
        }