Posts

Showing posts from 2018

Add Nuget Package for All projects in a Solution using console.

Use below command to add Nuget package for all projects in a Visual studio solution.  Get-Project -all | ForEach-Object {Install-Package Microsoft.SharePoint.dll -Version 14.0.0 -project $_.Name}