I have installed StructureMap using Nuget.
I do not want to checkin the created packages directory.
How do I recreate my package directory using packages.config?
I tried Update-Package with no success (nothing happended, I only get a little delay for the first time).
My packages.config:
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="structuremap" version="2.6.3" />
</packages>
See this article on the NuGet website: Using NuGet without committing packages to source control.
The article shows how to setup NuGet to restore all required packages for a solution. This NuGet feature is called “NuGet Package Restore”.