2 writes to TargetPath
NuGet.Packaging (2)
PackageCreation\Authoring\EmptyFrameworkFolderFile.cs (1)
25TargetPath = System.IO.Path.Combine(directoryPathInPackage, PackagingConstants.PackageEmptyFileName);
PackageCreation\Authoring\PackageBuilder.cs (1)
1053TargetPath = ResolvePackagePath(normalizedBasePath, searchPath, result.Path, targetPath)
8 references to TargetPath
NuGet.Packaging (8)
PackageCreation\Authoring\PackageBuilder.cs (2)
1026searchFiles.RemoveAll(file => Path.GetFileName(file.TargetPath) == PackagingConstants.PackageEmptyFileName 1027&& !IsKnownFolder(file.TargetPath));
PackageCreation\Authoring\PhysicalPackageFile.cs (6)
63public string Path => TargetPath; 104return TargetPath; 112String.Equals(TargetPath, file.TargetPath, StringComparison.OrdinalIgnoreCase); 127if (TargetPath != null) 132hash = hash * 4567 + TargetPath.GetHashCode(StringComparison.Ordinal);