1 type derived from PhysicalPackageFile
NuGet.Packaging (1)
PackageCreation\Authoring\EmptyFrameworkFolderFile.cs (1)
14internal sealed class EmptyFrameworkFolderFile : PhysicalPackageFile
1 instantiation of PhysicalPackageFile
NuGet.Packaging (1)
PackageCreation\Authoring\PackageBuilder.cs (1)
1021? new PhysicalPackageFile
10 references to PhysicalPackageFile
NuGet.Commands (5)
CommandRunners\PackCommandRunner.cs (5)
679if (file is PhysicalPackageFile) 681var physicalPackageFile = file as PhysicalPackageFile; 732var physicalPackageFile = packageFile as PhysicalPackageFile;
NuGet.Packaging (5)
PackageCreation\Authoring\PackageBuilder.cs (3)
992List<PhysicalPackageFile> searchFiles = ResolveSearchPattern(basePath, source.Replace('\\', Path.DirectorySeparatorChar), destination, _includeEmptyDirectories).ToList(); 1014internal static IEnumerable<PhysicalPackageFile> ResolveSearchPattern(string basePath, string searchPath, string? targetPath, bool includeEmptyDirectories) 1091private static void ExcludeFiles(List<PhysicalPackageFile> searchFiles, string basePath, string? exclude)
PackageCreation\Authoring\PhysicalPackageFile.cs (2)
109var file = obj as PhysicalPackageFile;