Create a new project from Visual Studio. Find your template from Visual C# templates.
It will ask you to configure to use IIS express
Because template contains no “packages” folders and the pre-installed nuget packages have no references. Project won’t compile.
Now right click solution and select “Enable Nuget Package Restore”
When you build your solution, packages will be downloaded and your nuget package references will be ok to resolve.
From time being, pre-installed nuget packages will have updates.
Right click Solution, select “Manage Nuget Packages for Solution…”
Select Updates Tab, to update packages
It is almost flawless, but….
You need to add project reference “Business”,”Data” to your “Web” project. And “Data” to your “Business” project.
———————————————————————
Download the sample vstemplate from http://mvc3projecttemplate.codeplex.com/
