Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio & Nuget: Package Manager Console commands history?

Is there any way to find the commands written in the Package Manager Console, like a history, for my particular project?

like image 319
alex Avatar asked Nov 24 '14 08:11

alex


1 Answers

From the Package Manager Console you can use the Powershell command Get-History to get a history of all commands executed during the current session.

like image 129
BenCamps Avatar answered Jan 01 '23 16:01

BenCamps