7 writes to ResolvedPath
Microsoft.Build.Tasks.Core (7)
ManifestUtil\Manifest.cs (7)
159a.ResolvedPath = ResolvePath(a.SourcePath, searchPaths); 167a.ResolvedPath = a.AssemblyIdentity.Resolve(searchPaths); 174a.ResolvedPath = ResolvePath(a.TargetPath, searchPaths); 190f.ResolvedPath = ResolvePath(f.SourcePath, searchPaths); 196f.ResolvedPath = ResolvePath(f.TargetPath, searchPaths); 523f.ResolvedPath = Path.Combine(Path.GetDirectoryName(f.ResolvedPath), f.TargetPath); 527f.ResolvedPath = Path.Combine(Path.GetDirectoryName(f.ResolvedPath), AssemblyName);
38 references to ResolvedPath
Microsoft.Build.Tasks.Core (38)
ManifestUtil\ApplicationManifest.cs (7)
439if (assembly.ReferenceType == AssemblyReferenceType.NativeAssembly && !assembly.IsPrerequisite && !String.IsNullOrEmpty(assembly.ResolvedPath)) 441ComInfo[] comInfoArray = ManifestReader.GetComInfo(assembly.ResolvedPath); 530FileStream fs = File.OpenRead(configFile.ResolvedPath); 647if (isPartialTrust && (assembly != EntryPoint) && !String.IsNullOrEmpty(assembly.ResolvedPath)) 694!String.IsNullOrEmpty(file.ResolvedPath) && PathUtil.IsAssembly(file.ResolvedPath)) 729string path = assembly.ResolvedPath;
ManifestUtil\DeployManifest.cs (1)
578string manifestPath = _entryPoint.ResolvedPath;
ManifestUtil\Manifest.cs (22)
160if (!String.IsNullOrEmpty(a.ResolvedPath)) 168if (!String.IsNullOrEmpty(a.ResolvedPath)) 175if (!String.IsNullOrEmpty(a.ResolvedPath)) 191if (!String.IsNullOrEmpty(f.ResolvedPath)) 197if (!String.IsNullOrEmpty(f.ResolvedPath)) 452AssemblyReferenceType.ClickOnceManifest => AssemblyIdentity.FromManifest(a.ResolvedPath), 453AssemblyReferenceType.ManagedAssembly => AssemblyIdentity.FromManagedAssembly(a.ResolvedPath), 454AssemblyReferenceType.NativeAssembly => AssemblyIdentity.FromNativeAssembly(a.ResolvedPath), 455_ => AssemblyIdentity.FromFile(a.ResolvedPath), 473else if (!String.IsNullOrEmpty(a.ResolvedPath)) 475if (PathUtil.IsNativeAssembly(a.ResolvedPath)) 494if (string.IsNullOrEmpty(f.ResolvedPath)) 503Util.GetFileInfo(f.ResolvedPath, out hash, out size); 507Util.GetFileInfo(f.ResolvedPath, targetFrameworkVersion, out hash, out size); 517string fileName = Path.GetFileName(f.ResolvedPath); 523f.ResolvedPath = Path.Combine(Path.GetDirectoryName(f.ResolvedPath), f.TargetPath); 527f.ResolvedPath = Path.Combine(Path.GetDirectoryName(f.ResolvedPath), AssemblyName); 528f.TargetPath = BaseReference.GetDefaultTargetPath(f.ResolvedPath); 545f.TargetPath = BaseReference.GetDefaultTargetPath(Path.GetFileName(f.ResolvedPath)); 576if (!String.IsNullOrEmpty(a.ResolvedPath)) // only check resolved items... 583BadImageFormatException exception = new BadImageFormatException(null, a.ResolvedPath); 598if (!String.IsNullOrEmpty(f.ResolvedPath)) // only check resolved items...
ResolveNativeReference.cs (8)
261ExtractFromManifest(null, assemblyref.ResolvedPath, containingReferenceFilesTable, containedPrerequisiteAssembliesTable, containedComComponentsTable, containedTypeLibrariesTable, containedLooseTlbFilesTable, containedLooseEtcFilesTable); 282if (fileref.ResolvedPath == null) 288if (!containedLooseEtcFilesTable.ContainsKey(fileref.ResolvedPath)) 291itemLooseEtcFile.ItemSpec = fileref.ResolvedPath; 297containedLooseEtcFilesTable.Add(fileref.ResolvedPath, itemLooseEtcFile); 335if (!containedLooseTlbFilesTable.ContainsKey(fileref.ResolvedPath)) 338itemLooseTlbFile.ItemSpec = fileref.ResolvedPath; 339containedLooseTlbFilesTable.Add(fileref.ResolvedPath, itemLooseTlbFile);