Inheritance: INotifyPropertyChanged
    internal ReferenceFolder(ReferencePathsSettings settings, string path, bool recursiveSearch = false)
    {
      if (settings == null) throw new ArgumentNullException("settings");
      if (string.IsNullOrWhiteSpace(path)) throw new ArgumentNullException("path");

      _settings = settings;
      _recursiveSearch = recursiveSearch;
      Path = path;
    }
        internal ReferenceFolder(ReferencePathsSettings settings, string path, bool recursiveSearch = false)
        {
            if (settings == null)
            {
                throw new ArgumentNullException("settings");
            }
            if (string.IsNullOrWhiteSpace(path))
            {
                throw new ArgumentNullException("path");
            }

            _settings        = settings;
            _recursiveSearch = recursiveSearch;
            Path             = path;
        }
Example #3
0
 public Settings()
 {
   InitializeComponent();
   _repositorySettings = Resources["RepositorySettings"] as RepositorySettings;
   _referencePathsSettings = Resources["ReferencePathsSettings"] as ReferencePathsSettings;
 }