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