47 writes to FullPath
Microsoft.Build.Tasks.Core (4)
AssemblyDependency\ReferenceTable.cs (4)
471reference.FullPath = Path.GetFullPath(assemblyFileName); 475reference.FullPath = assemblyFileName; 496reference.FullPath = String.Empty; 1363reference.FullPath = resolvedPath;
Microsoft.Build.Tasks.UnitTests (43)
AssemblyDependency\Miscellaneous.cs (31)
3245reference.FullPath = "c:\\AssemblyFolders\\Microsoft.VisualStudio.Interopt.dll"; 3250reference2.FullPath = "c:\\SomeOtherFolder\\Microsoft.VisualStudio.Interopt2.dll"; 3255reference3.FullPath = "c:\\SomeOtherFolder\\Microsoft.VisualStudio.Interopt3.dll"; 6498enginePrimaryReference.FullPath = "FullPath"; 6500dataDependencyReference.FullPath = "FullPath"; 6503xmlPrimaryReference.FullPath = "FullPath"; 6541enginePrimaryReference.FullPath = "FullPath"; 6542dataDependencyReference.FullPath = "FullPath"; 6543sqlDependencyReference.FullPath = "FullPath"; 6544xmlPrimaryReference.FullPath = "FullPath"; 6576enginePrimaryReference.FullPath = "FullPath"; 6579xmlPrimaryReference.FullPath = "FullPath"; 6619enginePrimaryReference.FullPath = "FullPath"; 6622xmlPrimaryReference.FullPath = "FullPath"; 6628dataDependencyReference.FullPath = "FullPath"; 6675enginePrimaryReference.FullPath = "FullPath"; 6676dataDependencyReference.FullPath = "FullPath"; 6677xmlPrimaryReference.FullPath = "FullPath"; 6678sqlDependencyReference.FullPath = "FullPath"; 6725enginePrimaryReference.FullPath = "FullPath"; 6726xmlPrimaryReference.FullPath = "FullPath"; 6727dataDependencyReference.FullPath = "FullPath"; 6728sqlDependencyReference.FullPath = "FullPath"; 6773enginePrimaryReference.FullPath = "FullPath"; 6774xmlPrimaryReference.FullPath = "FullPath"; 6775dataDependencyReference.FullPath = "FullPath"; 6776sqlDependencyReference.FullPath = "FullPath"; 6841enginePrimaryReference.FullPath = "FullPath"; 6842xmlPrimaryReference.FullPath = "FullPath"; 6843dataDependencyReference.FullPath = "FullPath"; 6844sqlDependencyReference.FullPath = "FullPath";
AssemblyDependency\ReferenceTests.cs (12)
46primaryReference1.FullPath = "FullPath"; 52primaryReference2.FullPath = "FullPath"; 55dependentReference.FullPath = "FullPath"; 73primaryReference1.FullPath = "FullPath"; 79primaryReference2.FullPath = "FullPath"; 82dependentReference.FullPath = "FullPath"; 99primaryReference1.FullPath = "FullPath"; 105primaryReference2.FullPath = "FullPath"; 108dependentReference.FullPath = "FullPath"; 126primaryReference1.FullPath = "FullPath"; 132primaryReference2.FullPath = "FullPath"; 135dependentReference.FullPath = "FullPath";
29 references to FullPath
Microsoft.Build.Tasks.Core (29)
AssemblyDependency\Reference.cs (2)
210Debug.Assert(dependee.FullPath.Length > 0, "Cannot add dependee that doesn't have a full name. This should have already been resolved."); 1136return FullPath;
AssemblyDependency\ReferenceTable.cs (18)
436if (reference.FullPath.Length > 0) 494ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("General.ExpectedFileGotDirectory", reference.FullPath), 502new DependencyResolutionException(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("General.ExpectedFileMissing", reference.FullPath), null)); 665possiblyBetterAssemblyName = _getAssemblyName(reference.FullPath); 1010_log?.LogErrorFromResources("ResolveAssemblyReference.ProblemFindingSatelliteAssemblies", reference.FullPath, e.Message); 1049reference.FullPath, 1130if (!_fileExists(reference.FullPath)) 1133new DependencyResolutionException(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("General.ExpectedFileMissing", reference.FullPath), null)); 1162newReference.AddPreUnificationVersion(reference.FullPath, unifiedDependency.PreUnified.Version, unifiedDependency.UnificationReason); 1192existingReference.AddPreUnificationVersion(reference.FullPath, unifiedDependency.PreUnified.Version, unifiedDependency.UnificationReason); 1266parentReferenceFolders.Add(new(Directory: parentReferenceFolder, ParentAssembly: parentReference.FullPath)); 2169if (!(reference.IsResolved && _fileExists(reference.FullPath)) || reference.IsPrerequisite || (_frameworkPaths != null && Reference.IsFrameworkFile(reference.FullPath, _frameworkPaths))) 2700referenceItem = new TaskItem(reference.FullPath); 2708referenceItem ??= new TaskItem(reference.FullPath); 2716&& VerifyArchitectureOfImplementationDll(reference.ImplementationAssembly, reference.FullPath); 2802if (Reference.IsFrameworkFile(reference.FullPath, frameworkPaths) || (installedAssemblies?.FrameworkAssemblyEntryInRedist(assemblyName) == true)) 2804if (!IsAssemblyRemovedFromDotNetFramework(assemblyName, reference.FullPath, frameworkPaths, installedAssemblies))
AssemblyDependency\ResolveAssemblyReference.cs (9)
1239victimReference.FullPath, 1241reference.FullPath); 1377log.Append(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword(resource, fusionName, conflictCandidate.FullPath)); 1408log.AppendLine().Append(Strings.EightSpaces).AppendLine(dependeeReference.FullPath); 1410log.Append(Strings.TenSpaces).Append(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("ResolveAssemblyReference.PrimarySourceItemsForReference", dependeeReference.FullPath)); 1806Log.LogMessage(importance, Strings.Resolved, reference.FullPath); 1938if (reference.FullPath.Length > 0) 2741if (fileExists(resolvedReference.FullPath)) 2745getAssemblyMetadata(resolvedReference.FullPath, assemblyMetadataCache, out result, out scatterFiles, out frameworkName);