Interface IPackageContentReader
public interface IPackageContentReader
Methods
GetBuildItems()
Returns all items under the build folder.
IEnumerable<FrameworkSpecificGroup> GetBuildItems()
Returns
GetContentItems()
Returns all items found in the content folder.
IEnumerable<FrameworkSpecificGroup> GetContentItems()
Returns
Remarks
Some legacy behavior has been dropped here due to the mix of content folders and target framework folders here.
GetFrameworkItems()
Returns all framework references found in the nuspec.
IEnumerable<FrameworkSpecificGroup> GetFrameworkItems()
Returns
GetLibItems()
Returns all lib items without any filtering. Use GetReferenceItems for the filtered list.
IEnumerable<FrameworkSpecificGroup> GetLibItems()
Returns
GetPackageDependencies()
Returns package dependencies.
IEnumerable<PackageDependencyGroup> GetPackageDependencies()
Returns
GetReferenceItems()
Returns lib items + filtering based on the nuspec and other NuGet rules.
IEnumerable<FrameworkSpecificGroup> GetReferenceItems()
Returns
GetToolItems()
Returns all items under the tools folder.
IEnumerable<FrameworkSpecificGroup> GetToolItems()