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