Seeking PS script that would
-
inspect packages installed on my
MasterWorkstation, then; -
Produce a list of commands that can
be executed on other workstations so
as to produce a synched dev image.
thx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
NuGet doesn’t really have the concept of packages that are installed at the machine level. Instead, packages are installed in each project that needs it.
When packages are installed in a project, a repository.config file is created that lists what’s installed. Using that file, you can then easily re-fetch the same packages on another machine, keeping things essentially in sync.
See my post for more details on this workflow.