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