Author: .NET Web Development and Tools Blog | Posted on: 8/30/2013 9:18:40 PM | Views : 1350

Since the release of NuGet 2.7 with Automatic Package Restore and implicit consent, many developers have adopted the new approach and provided some great feedback on their experiences. Based on that feedback, we have collected a set of tips to help you start using the new restore features. Using Automatic Package Restore Even though package restore consent is on by default, users still need to choose to omit their packages from source control before package restore is engaged. By default, source control systems will include the packages folder in your repository, and you need to take action to omit the packages from source control. Git Use the .gitignore file to ignore the packages folder. Adding a line that simply has "packages" on...(read more) ...

Go to the complete details ...