4 writes to FullPath
Microsoft.Build.Tasks.Core (4)
AssemblyDependency\ReferenceTable.cs (4)
481
reference.
FullPath
= _taskEnvironment.GetAbsolutePath(assemblyFileName).GetCanonicalForm();
485
reference.
FullPath
= assemblyFileName;
506
reference.
FullPath
= String.Empty;
1380
reference.
FullPath
= resolvedPath;
32 references to FullPath
Microsoft.Build.Tasks.Core (32)
AssemblyDependency\Reference.cs (2)
210
Debug.Assert(dependee.
FullPath
.Length > 0, "Cannot add dependee that doesn't have a full name. This should have already been resolved.");
1159
return
FullPath
;
AssemblyDependency\ReferenceTable.cs (21)
446
if (reference.
FullPath
.Length > 0)
490
if (_fileExists(reference.
FullPath
))
492
assemblyName = _getAssemblyName(reference.
FullPath
);
498
else if (_directoryExists(reference.
FullPath
))
504
ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("General.ExpectedFileGotDirectory", reference.
FullPath
),
512
new DependencyResolutionException(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("General.ExpectedFileMissing", reference.
FullPath
), null));
675
possiblyBetterAssemblyName = _getAssemblyName(reference.
FullPath
);
1020
_log?.LogErrorFromResources("ResolveAssemblyReference.ProblemFindingSatelliteAssemblies", reference.
FullPath
, e.Message);
1059
reference.
FullPath
,
1140
if (!_fileExists(reference.
FullPath
))
1143
new DependencyResolutionException(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("General.ExpectedFileMissing", reference.
FullPath
), null));
1172
newReference.AddPreUnificationVersion(reference.
FullPath
, unifiedDependency.PreUnified.Version, unifiedDependency.UnificationReason);
1202
existingReference.AddPreUnificationVersion(reference.
FullPath
, unifiedDependency.PreUnified.Version, unifiedDependency.UnificationReason);
1276
parentReferenceFolders.Add(new(Directory: parentReferenceFolder, ParentAssembly: parentReference.
FullPath
));
2186
if (!(reference.IsResolved && _fileExists(reference.
FullPath
)) || reference.IsPrerequisite || (_frameworkPaths != null && Reference.IsFrameworkFile(reference.
FullPath
, _frameworkPaths)))
2717
referenceItem = new TaskItem(reference.
FullPath
);
2725
referenceItem ??= new TaskItem(reference.
FullPath
);
2733
&& VerifyArchitectureOfImplementationDll(reference.ImplementationAssembly, reference.
FullPath
);
2819
if (Reference.IsFrameworkFile(reference.
FullPath
, frameworkPaths) || (installedAssemblies?.FrameworkAssemblyEntryInRedist(assemblyName) == true))
2821
if (!IsAssemblyRemovedFromDotNetFramework(assemblyName, reference.
FullPath
, frameworkPaths, installedAssemblies))
AssemblyDependency\ResolveAssemblyReference.cs (9)
1367
victimReference.
FullPath
,
1369
reference.
FullPath
);
1505
log.Append(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword(resource, fusionName, conflictCandidate.
FullPath
));
1536
log.AppendLine().Append(Strings.EightSpaces).AppendLine(dependeeReference.
FullPath
);
1538
log.Append(Strings.TenSpaces).Append(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("ResolveAssemblyReference.PrimarySourceItemsForReference", dependeeReference.
FullPath
));
1934
Log.LogMessage(importance, Strings.Resolved, reference.
FullPath
);
2066
if (reference.
FullPath
.Length > 0)
2886
if (fileExists(resolvedReference.
FullPath
))
2890
getAssemblyMetadata(resolvedReference.
FullPath
, assemblyMetadataCache, out result, out scatterFiles, out frameworkName);