C# Class NuGet.UnzippedPackage

An unzipped package has its contents laid out as physical files on disk inside a directory, instead of inside a .nupkg file.
An unzipped package is strictly required to have this directory structure: ([] denotes directory) jQuery.1.0.nupkg [jQuery.1.0] jQuery.1.0.nuspec [content] jQuery.js [lib] jQuery.dll [tools] install.ps1
Inheritance: LocalPackage
Afficher le fichier Open project: themotleyfool/NuGet Class Usage Examples

Méthodes publiques

Méthode Description
GetStream ( ) : Stream
GetSupportedFrameworks ( ) : IEnumerable
UnzippedPackage ( IFileSystem repositoryFileSystem, string packageName ) : System
UnzippedPackage ( string repositoryDirectory, string packageName ) : System

Create an uninstance of UnzippedPackage class

Méthodes protégées

Méthode Description
GetAssemblyReferencesBase ( ) : IEnumerable
GetFilesBase ( ) : IEnumerable

Private Methods

Méthode Description
EnsureManifest ( ) : void
GetPackageFilePaths ( ) : IEnumerable
GetPackageRelativePath ( string path ) : string

Method Details

GetAssemblyReferencesBase() protected méthode

protected GetAssemblyReferencesBase ( ) : IEnumerable
Résultat IEnumerable

GetFilesBase() protected méthode

protected GetFilesBase ( ) : IEnumerable
Résultat IEnumerable

GetStream() public méthode

public GetStream ( ) : Stream
Résultat Stream

GetSupportedFrameworks() public méthode

public GetSupportedFrameworks ( ) : IEnumerable
Résultat IEnumerable

UnzippedPackage() public méthode

public UnzippedPackage ( IFileSystem repositoryFileSystem, string packageName ) : System
repositoryFileSystem IFileSystem
packageName string
Résultat System

UnzippedPackage() public méthode

Create an uninstance of UnzippedPackage class
public UnzippedPackage ( string repositoryDirectory, string packageName ) : System
repositoryDirectory string The root directory which contains the .nupkg file and the corresponding unippws directory.
packageName string Contains the file name without the extension of the nupkg file.
Résultat System