Esempio n. 1
0
        public void Execute(TypeDefinition type_definition, DependencyMap dependency_map)
        {
            map = dependency_map;

            foreach (var property in type_definition.Properties)
            {
                log.Trace(string.Format("\t\t\tChecking {0} for dependencies", property.Name));
                AnalyseMethod(property, property.GetMethod);
            }
        }