4 instantiations of AssemblyProperty
Microsoft.Cci.Extensions (4)
Mappings\AssemblyMapping.cs (4)
74yield return new AssemblyProperty("TargetRuntimeVersion", assembly.TargetRuntimeVersion); 75yield return new AssemblyProperty("Version", assembly.Version.ToString()); 76yield return new AssemblyProperty("PublicKeyToken", assembly.GetPublicKeyToken()); 80yield return new AssemblyProperty(alias);
11 references to AssemblyProperty
Microsoft.Cci.Extensions (9)
Mappings\AssemblyMapping.cs (9)
14private Dictionary<string, ElementMapping<AssemblyProperty>> _properties; 24public IEnumerable<ElementMapping<AssemblyProperty>> Properties 30_properties = new Dictionary<string, ElementMapping<AssemblyProperty>>(); 36foreach (var prop in GetAssemblyProperties(this[i])) 38ElementMapping<AssemblyProperty> mapping; 41mapping = new ElementMapping<AssemblyProperty>(this.Settings); 72private static IEnumerable<AssemblyProperty> GetAssemblyProperties(IAssembly assembly) 84public class AssemblyProperty : IEquatable<AssemblyProperty> 113public bool Equals(AssemblyProperty other)
Microsoft.DotNet.AsmDiff (2)
DiffCSharpWriter.cs (2)
468private void Visit(IEnumerable<ElementMapping<AssemblyMapping.AssemblyProperty>> properties) 474private void Visit(ElementMapping<AssemblyMapping.AssemblyProperty> property)