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)
1050? new PhysicalPackageFile
10 references to PhysicalPackageFile
NuGet.Commands (5)
CommandRunners\PackCommandRunner.cs (5)
667if (file is PhysicalPackageFile) 669var physicalPackageFile = file as PhysicalPackageFile; 720var physicalPackageFile = packageFile as PhysicalPackageFile;
NuGet.Packaging (5)
PackageCreation\Authoring\PackageBuilder.cs (3)
1021List<PhysicalPackageFile> searchFiles = ResolveSearchPattern(basePath, source.Replace('\\', Path.DirectorySeparatorChar), destination, _includeEmptyDirectories).ToList(); 1043internal static IEnumerable<PhysicalPackageFile> ResolveSearchPattern(string basePath, string searchPath, string? targetPath, bool includeEmptyDirectories) 1120private static void ExcludeFiles(List<PhysicalPackageFile> searchFiles, string basePath, string? exclude)
PackageCreation\Authoring\PhysicalPackageFile.cs (2)
109var file = obj as PhysicalPackageFile;