Reputation: 1410
I started a Visual Studio 2012 project by creating an asp.net MVC 4 empty project. I would like to know if I can add the authentication membership provider, bundling, css, javascript that come packaged with the asp.net mvc 4 intranet site project template to my existing empty project without having to create from scratch.
Upvotes: 0
Views: 646
Reputation: 19828
Create new one. Copy classes from App_start folder, global.asax and web.config to your project
Upvotes: 1