7 writes to TypeLibName
Microsoft.Build.Tasks.Core (1)
TlbReference.cs (1)
165TypeLibName = ReferenceInfo.fullTypeLibPath,
Microsoft.Build.Tasks.UnitTests (6)
AxTlbBaseTask_Tests.cs (3)
48t.TypeLibName = "FakeTlb.tlb"; 201t.TypeLibName = "FakeLibrary.tlb"; 270t.TypeLibName = "Blah.tlb";
TlbImp_Tests.cs (3)
62t.TypeLibName = testParameterValue; 78t.TypeLibName = testParameterValue; 275t.TypeLibName = "SomeRandomControl.tlb";
8 references to TypeLibName
Microsoft.Build.Tasks.Core (4)
TlbImp.cs (4)
114get => (string)Bag[nameof(TypeLibName)]; 115set => Bag[nameof(TypeLibName)] = value; 239commandLine.AppendFileNameIfNotNull(TypeLibName); 270if (String.IsNullOrEmpty(TypeLibName))
Microsoft.Build.Tasks.UnitTests (4)
TlbImp_Tests.cs (4)
60Assert.Null(t.TypeLibName); // "TypeLibName should be null by default" 63Assert.Equal(testParameterValue, t.TypeLibName); // "New TypeLibName value should be set" 76Assert.Null(t.TypeLibName); // "TypeLibName should be null by default" 79Assert.Equal(testParameterValue, t.TypeLibName); // "New TypeLibName value should be set"