3 writes to RuntimeCallableWrapperAssembly
Microsoft.Build.Tasks.Core (1)
AxReference.cs (1)
90axImp.RuntimeCallableWrapperAssembly = ReferenceInfo.primaryOfAxImpRef.resolvedWrapper.path;
Microsoft.Build.Tasks.UnitTests (2)
AxImp_Tests.cs (2)
145t.RuntimeCallableWrapperAssembly = testParameterValue; 168t.RuntimeCallableWrapperAssembly = testParameterValue;
7 references to RuntimeCallableWrapperAssembly
Microsoft.Build.Tasks.Core (3)
AxImp.cs (3)
89get => (string)Bag[nameof(RuntimeCallableWrapperAssembly)]; 90set => Bag[nameof(RuntimeCallableWrapperAssembly)] = value; 133commandLine.AppendSwitchIfNotNull("/rcw:", RuntimeCallableWrapperAssembly);
Microsoft.Build.Tasks.UnitTests (4)
AxImp_Tests.cs (4)
139Assert.Null(t.RuntimeCallableWrapperAssembly); // "RuntimeCallableWrapper should be null by default" 146Assert.Equal(testParameterValue, t.RuntimeCallableWrapperAssembly); // "New RuntimeCallableWrapper value should be set" 162Assert.Null(t.RuntimeCallableWrapperAssembly); // "RuntimeCallableWrapper should be null by default" 169Assert.Equal(testParameterValue, t.RuntimeCallableWrapperAssembly); // "New RuntimeCallableWrapper value should be set"