Reputation: 1776
I have Visual Studio 2012 Premium installed. When I try to create an SPA Application
in MVC 4
, its template is not available there, as seen in the screenshot below. How do I add the template?
Upvotes: 1
Views: 368
Reputation: 111
If you want to Jumpstart and learn SPA application in VS professional 2012, You can install HotTowel SPA
Install-Package HotTowel
Install-Package Microsoft.AspNet.WebApi -IncludePrerelease
For more information of this template click the below links http://www.johnpapa.net/hottowel/
Upvotes: 1
Reputation: 108
You have to update your Visual Studio 2012 Premium
, in the update, all these new featured are added like Single Page Application
, Facebook Application
etc.
Upvotes: 2
Reputation: 1243
Which updates do you have installed? According to the ASP.NET documentation, you have to install the ASP.NET Web Tools 2012.2 Update, which can be found here.
The documentation also has step-by-step instructions stating how to make an SPA if it's already installed.
Upvotes: 2