3 writes to strippedTypeLibPath
Microsoft.Build.Tasks.Core (2)
ComReferenceInfo.cs (2)
98
this.
strippedTypeLibPath
= copyFrom.strippedTypeLibPath;
149
this.
strippedTypeLibPath
= ComReference.StripTypeLibNumberFromPath(path, FileSystems.Default.FileExists);
Microsoft.Build.Tasks.UnitTests (1)
ResolveComReference_Tests.cs (1)
256
referenceInfo.
strippedTypeLibPath
= typeLibPath;
17 references to strippedTypeLibPath
Microsoft.Build.Tasks.Core (15)
AxReference.cs (1)
75
axImp.ActiveXControlName = ReferenceInfo.
strippedTypeLibPath
;
AxTlbBaseReference.cs (3)
146
Debug.Assert(!string.IsNullOrEmpty(ReferenceInfo.
strippedTypeLibPath
), "ReferenceInfo.path should be valid if we got here");
147
if (string.IsNullOrEmpty(ReferenceInfo.
strippedTypeLibPath
))
162
if (DateTime.Compare(File.GetLastWriteTime(ReferenceInfo.
strippedTypeLibPath
), componentTimestamp) != 0)
ComReferenceInfo.cs (1)
98
this.strippedTypeLibPath = copyFrom.
strippedTypeLibPath
;
ResolveComReference.cs (6)
862
string modulePath = projectRefInfo.
strippedTypeLibPath
;
1047
_timestampCache[referenceInfo.
strippedTypeLibPath
] = File.GetLastWriteTime(referenceInfo.
strippedTypeLibPath
);
1279
if (!reference.FindExistingWrapper(out wrapperInfo, _timestampCache[referenceInfo.
strippedTypeLibPath
]))
1361
if (!reference.FindExistingWrapper(out wrapperInfo, _timestampCache[referenceInfo.
strippedTypeLibPath
]))
1405
if (!reference.FindExistingWrapper(out wrapperInfo, _timestampCache[referenceInfo.
strippedTypeLibPath
]))
TlbReference.cs (4)
418
Log.LogWarningWithCodeFromResources("ResolveComReference.ResolutionWarning", ReferenceInfo.SourceItemSpec, ReferenceInfo.
strippedTypeLibPath
, eventMsg);
422
Log.LogWarningWithCodeFromResources("ResolveComReference.ResolutionWarning", ReferenceInfo.SourceItemSpec, ReferenceInfo.
strippedTypeLibPath
, eventMsg);
426
Log.LogMessageFromResources(MessageImportance.Low, "ResolveComReference.ResolutionMessage", ReferenceInfo.SourceItemSpec, ReferenceInfo.
strippedTypeLibPath
, eventMsg);
431
Log.LogMessageFromResources(MessageImportance.Low, "ResolveComReference.ResolutionMessage", ReferenceInfo.SourceItemSpec, ReferenceInfo.
strippedTypeLibPath
, eventMsg);
Microsoft.Build.Tasks.UnitTests (2)
ResolveComReference_Tests.cs (2)
433
Assert.Equal(axRefInfo.
strippedTypeLibPath
, newTlbInfo.
strippedTypeLibPath
); // "The added reference should have the same type lib path as the Ax reference"