Пример #1
0
        private void CreateTaskDatabase(SolutionProject solutionProject)
        {
            var projectDatabase = _taskListManager.CreateProjectDatabase(solutionProject.Name, solutionProject.ParentDirectory);

            if (projectDatabase == true)
            {
                // Refresh the loaded list to reflect the update because I'm too lazy
                // to wire up all the annoying stuff to update in place
                LoadSolutionProjects();
            }
        }