5 writes to ActiveXControlName
Microsoft.Build.Tasks.Core (1)
AxReference.cs (1)
75axImp.ActiveXControlName = ReferenceInfo.strippedTypeLibPath;
Microsoft.Build.Tasks.UnitTests (4)
AxImp_Tests.cs (2)
25t.ActiveXControlName = testParameterValue; 41t.ActiveXControlName = testParameterValue;
AxTlbBaseTask_Tests.cs (2)
130t.ActiveXControlName = "FakeControl.ocx"; 235t.ActiveXControlName = "FakeControl.ocx";
8 references to ActiveXControlName
Microsoft.Build.Tasks.Core (4)
AxImp.cs (4)
53get => (string)Bag[nameof(ActiveXControlName)]; 54set => Bag[nameof(ActiveXControlName)] = value; 128commandLine.AppendFileNameIfNotNull(ActiveXControlName); 148if (String.IsNullOrEmpty(ActiveXControlName))
Microsoft.Build.Tasks.UnitTests (4)
AxImp_Tests.cs (4)
23Assert.Null(t.ActiveXControlName); // "ActiveXControlName should be null by default" 26Assert.Equal(testParameterValue, t.ActiveXControlName); // "New ActiveXControlName value should be set" 39Assert.Null(t.ActiveXControlName); // "ActiveXControlName should be null by default" 42Assert.Equal(testParameterValue, t.ActiveXControlName); // "New ActiveXControlName value should be set"