Example #1
0
        public void AddDependency(string consumer, string provider)
        {
            string consumerKey = AddOrGetKey(consumer);
            string providerKey = AddOrGetKey(provider);

            if (!string.Equals(consumerKey, providerKey, StringComparison.InvariantCulture))
            {
                Dependencies.AppendValue(consumer, provider);
            }
        }