top of page

NuGet Kommandozeile / NuGet command line

(alle Versionen/all versions)

Donnerstag, 25. Mai 2023

Nützliche NuGet Kommandozeilen Befehle / Useful NuGet command line instructions


get-package | uninstall-package -removedependencies -force

Erzwingt die Deinstallation aller vorhandenen NuGet-Pakete. Es werden alle Pakete aus allen Visual Studio Projekten entfernt.

Forces the de-installation of all existing NuGet packages. All packages will be removed from all Visual Studio projects.


Uninstall-Package MyPackageName -Force –RemoveDependencies

Erzwing die Deinstallation des angegebenen Pakets "MyPackageName". Es muss darauf geachtet werden, dass nur der Paket-Name (ohne Version angegeben wird). Wichtig: Die Deinstallation wird immer nur das angegebene Paket deinstallieren.

Force the specified package "MyPackageName" to be uninstalled. It must be ensured that only the package name (without the version) is specified. Important: The uninstallation will only ever uninstall the specified package.


Install-Package MyPackageName -Source %SystemDrive%\TODO_MyNuGetPackages\

Installiert das NuGet Paket "MyPackageName" aus einer lokalen Quelle.

Installs the NuGet package "MyPackageName" from a local source.


Install-Package MyPackageName MyVisualStudioProjectName -Source %SystemDrive%\TODO_MyNuGetPackages\

Installiert das NuGet Paket "MyPackageName" aus einer lokalen Quelle ausschließlich in das Visual Studio Projekt "MyVisualStudioProjectName".

Installs the NuGet package "MyPackageName" from a local source only into the Visual Studio project "MyVisualStudioProjectName".


Install-Package MyPackageName MyVisualStudioProjectName -Version 22.1.5 -Source %SystemDrive%\TODO_MyNuGetPackages\

Installiert das NuGet-Paket mit der ID/dem Namen "MyPackageName" ausschließlich in das Visual Studio Projekt "MyVisualStudioProjectName". Für die Installation wird explizit die spezifische Packet-Version "22.1.5" verlangt und die Installation soll aus einer lokalen Paketquelle erfolgen.

Installs the NuGet package with the ID/name "MyPackageName" into the Visual Studio project "MyVisualStudioProjectName" only. The specific package version "22.1.5" is explicitly required for the installation, and the installation should be carried out from a local package source.


Update-Package -Source %SystemDrive%\TODO_MyNuGetPackages\

Aktualisiert die referenzierten NuGet-Pakete auf eine neuere Version, auf der Basis einer lokalen Quelle. Dies greift ausschließlich dann, wenn neuere Bibliotheken vorhanden sind.

Updates the referenced NuGet packages to a newer version, based on a local source. This only applies if newer libraries are available.


Update-Package -Source %SystemDrive%\TODO_MyNuGetPackages\ –reinstall

Startet die Neuinstallation aller referenzierten NuGet-Pakete. Als Paketquelle wird die lokale Quelle verwendet.

Starts reinstalling all referenced NuGet packages. The local source is used as the package source.


Update-Package MyVisualStudioProjectName -Source %SystemDrive%\TODO_MyNuGetPackages\ –reinstall

Startet die Neuinstallation der NuGet-Pakete ausschließlich für das Visual Studio Projekt "MyVisualStudioProjectName". Als Paketquelle wird die lokale Quelle verwendet.

Starts reinstalling referenced NuGet packages only for the Visual Studio project "MyVisualStudioProjectName". The local source is used as the package source.


Update-Package MyPackageName -Version 22.1.5 -Source %SystemDrive%\TODO_MyNuGetPackages\

Aktualisiert das NuGet-Paket "MyPackageName" auf die spezifische angegebene Version "22.1.5", wobei eine lokale Paketquelle verwendet wird.

Updates the NuGet package "MyPackageName" to the specified version "22.1.5", using a local package source.



Siehe auch / See also:

https://www.officium-inservio.com/ms-net-1/nugetproblems

bottom of page