C# Class NuGet.ProjectManager

Inheritance: IProjectManager
Afficher le fichier Open project: OneGet/nuget

Méthodes publiques

Méthode Description
AddPackageReference ( IPackage package, bool ignoreDependencies, bool allowPrereleaseVersions ) : void
AddPackageReference ( string packageId ) : void

Seems to be used by unit tests only. Perhaps, consumers of NuGet.Core may be using this overload

AddPackageReference ( string packageId, NuGet.SemanticVersion version ) : void
AddPackageReference ( string packageId, NuGet.SemanticVersion version, bool ignoreDependencies, bool allowPrereleaseVersions ) : void
IsInstalled ( IPackage package ) : bool
ProjectManager ( IPackageRepository sourceRepository, IPackagePathResolver pathResolver, IProjectSystem project, IPackageRepository localRepository ) : System
RemovePackageReference ( IPackage package, bool forceRemove, bool removeDependencies ) : void
RemovePackageReference ( string packageId ) : void
RemovePackageReference ( string packageId, bool forceRemove ) : void
RemovePackageReference ( string packageId, bool forceRemove, bool removeDependencies ) : void
UpdatePackageReference ( IPackage remotePackage, bool updateDependencies, bool allowPrereleaseVersions ) : void
UpdatePackageReference ( string packageId, IVersionSpec versionSpec, bool updateDependencies, bool allowPrereleaseVersions ) : void
UpdatePackageReference ( string packageId, SemanticVersion version, bool updateDependencies, bool allowPrereleaseVersions ) : void

If the remote package is already determined, consider using the overload which directly takes in the remote package Can avoid calls FindPackage calls to source repository. However, it should also be remembered that SourceRepository of ProjectManager is an aggregate of "SharedPackageRepository" and the selected repository. So, if the package is present on the repository path (by default, the packages folder) It would not result in a call to the server

Méthodes protégées

Méthode Description
AddPackageReferenceToProject ( IPackage package ) : void
Execute ( NuGet.PackageOperation operation ) : void
UpdatePackageReference ( IPackage package ) : void

Private Methods

Méthode Description
CreateOperation ( IPackage package ) : NuGet.PackageOperationEventArgs
Execute ( IPackage package, IPackageOperationResolver resolver ) : void
ExtractPackageFilesToProject ( IPackage package ) : void
FilterAssemblyReferences ( List assemblyReferences, ICollection packageAssemblyReferences ) : void
GetCompatibleInstalledItemsForPackage ( string packageId, IEnumerable items ) : IEnumerable

This method uses the 'targetFramework' attribute in the packages.config to determine compatible items. Hence, it's only good for uninstall operations.

GetConfigMappings ( ) : IDictionary>
GetFilteredAssembliesToDelete ( IPackage package ) : IList
GetPackageTargetFramework ( string packageId ) : FrameworkName
IsTransformFile ( string path ) : bool
LogTargetFrameworkInfo ( IPackage package, List assemblyReferences, List contentFiles, List buildFiles ) : void
OnPackageReferenceAdded ( NuGet.PackageOperationEventArgs e ) : void
OnPackageReferenceAdding ( NuGet.PackageOperationEventArgs e ) : void
OnPackageReferenceRemoved ( NuGet.PackageOperationEventArgs e ) : void
OnPackageReferenceRemoving ( NuGet.PackageOperationEventArgs e ) : void
RemovePackageReferenceFromProject ( IPackage package ) : void
UpdatePackageReference ( string packageId ) : void

Seems to be used by unit tests only. Perhaps, consumers of NuGet.Core may be using this overload

UpdatePackageReference ( string packageId, Func resolvePackage, bool updateDependencies, bool allowPrereleaseVersions, bool targetVersionSetExplicitly ) : void
UpdatePackageReference ( string packageId, SemanticVersion version ) : void

Seems to be used by unit tests only. Perhaps, consumers of NuGet.Core may be using this overload

UpdatePackageReferenceCore ( IPackage package, bool updateDependencies, bool allowPrereleaseVersions ) : void

Method Details

AddPackageReference() public méthode

public AddPackageReference ( IPackage package, bool ignoreDependencies, bool allowPrereleaseVersions ) : void
package IPackage
ignoreDependencies bool
allowPrereleaseVersions bool
Résultat void

AddPackageReference() public méthode

Seems to be used by unit tests only. Perhaps, consumers of NuGet.Core may be using this overload
public AddPackageReference ( string packageId ) : void
packageId string
Résultat void

AddPackageReference() public méthode

public AddPackageReference ( string packageId, NuGet.SemanticVersion version ) : void
packageId string
version NuGet.SemanticVersion
Résultat void

AddPackageReference() public méthode

public AddPackageReference ( string packageId, NuGet.SemanticVersion version, bool ignoreDependencies, bool allowPrereleaseVersions ) : void
packageId string
version NuGet.SemanticVersion
ignoreDependencies bool
allowPrereleaseVersions bool
Résultat void

AddPackageReferenceToProject() protected méthode

protected AddPackageReferenceToProject ( IPackage package ) : void
package IPackage
Résultat void

Execute() protected méthode

protected Execute ( NuGet.PackageOperation operation ) : void
operation NuGet.PackageOperation
Résultat void

IsInstalled() public méthode

public IsInstalled ( IPackage package ) : bool
package IPackage
Résultat bool

ProjectManager() public méthode

public ProjectManager ( IPackageRepository sourceRepository, IPackagePathResolver pathResolver, IProjectSystem project, IPackageRepository localRepository ) : System
sourceRepository IPackageRepository
pathResolver IPackagePathResolver
project IProjectSystem
localRepository IPackageRepository
Résultat System

RemovePackageReference() public méthode

public RemovePackageReference ( IPackage package, bool forceRemove, bool removeDependencies ) : void
package IPackage
forceRemove bool
removeDependencies bool
Résultat void

RemovePackageReference() public méthode

public RemovePackageReference ( string packageId ) : void
packageId string
Résultat void

RemovePackageReference() public méthode

public RemovePackageReference ( string packageId, bool forceRemove ) : void
packageId string
forceRemove bool
Résultat void

RemovePackageReference() public méthode

public RemovePackageReference ( string packageId, bool forceRemove, bool removeDependencies ) : void
packageId string
forceRemove bool
removeDependencies bool
Résultat void

UpdatePackageReference() protected méthode

protected UpdatePackageReference ( IPackage package ) : void
package IPackage
Résultat void

UpdatePackageReference() public méthode

public UpdatePackageReference ( IPackage remotePackage, bool updateDependencies, bool allowPrereleaseVersions ) : void
remotePackage IPackage
updateDependencies bool
allowPrereleaseVersions bool
Résultat void

UpdatePackageReference() public méthode

public UpdatePackageReference ( string packageId, IVersionSpec versionSpec, bool updateDependencies, bool allowPrereleaseVersions ) : void
packageId string
versionSpec IVersionSpec
updateDependencies bool
allowPrereleaseVersions bool
Résultat void

UpdatePackageReference() public méthode

If the remote package is already determined, consider using the overload which directly takes in the remote package Can avoid calls FindPackage calls to source repository. However, it should also be remembered that SourceRepository of ProjectManager is an aggregate of "SharedPackageRepository" and the selected repository. So, if the package is present on the repository path (by default, the packages folder) It would not result in a call to the server
public UpdatePackageReference ( string packageId, SemanticVersion version, bool updateDependencies, bool allowPrereleaseVersions ) : void
packageId string
version SemanticVersion
updateDependencies bool
allowPrereleaseVersions bool
Résultat void