public void GenerateUUIDs(ConfigScope scope)
		{
			_config.Put(GenerateUuidsKey, scope);
		}
		public void GenerateVersionNumbers(ConfigScope scope)
		{
			if (scope == ConfigScope.Individually)
			{
				throw new NotSupportedException();
			}
			GenerateCommitTimestamps(scope == ConfigScope.Globally);
		}
Esempio n. 3
0
 private bool Generate1(ConfigScope globalConfig, TernaryBool individualConfig)
 {
     return globalConfig.ApplyConfig(individualConfig);
 }