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