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