angularjs - Visual Studio 2015 Hot Towel Angular -
i have installed visual studio 2015 rc1. trying install hot towel angular package. when install receive following messages in output window:
installing nuget package hottowel.angular.2.3.3. installed 'hottowel.angular.2.3.3' valueinvestingmentor.web. ========== finished ========== restoring packages c:\users\kruerj\documents\visual studio 2015\projects\valueinvestingmentor\src\valueinvestingmentor.web\project.json writing lock file c:\users\kruerj\documents\visual studio 2015\projects\valueinvestingmentor\src\valueinvestingmentor.web\project.lock.json restore complete, 1741ms elapsed
when @ project.json file looks this:
{ "webroot": "wwwroot", "version": "1.0.0-*", "dependencies": { "microsoft.aspnet.mvc": "6.0.0-beta4", "microsoft.aspnet.server.iis": "1.0.0-beta4", "microsoft.aspnet.server.weblistener": "1.0.0-beta4", "microsoft.aspnet.staticfiles": "1.0.0-beta4", "hottowel.angular": "2.3.3" }, "commands": { "web": "microsoft.aspnet.hosting --server microsoft.aspnet.server.weblistener --server.urls http://localhost:5000" }, "frameworks": { "dnx451": { }, "dnxcore50": { } }, "exclude": [ "wwwroot", "node_modules", "bower_components" ], "publishexclude": [ "node_modules", "bower_components", "**.xproj", "**.user", "**.vspscc" ] }
however, no files installed in project.
i have tried "empty" web application project , "web api" , "mvc" project. none of them successful.
what doing wrong?
i have used in visual studio 2012 without problems @ all.
i encountered similar issue when installing hottowel angular through nuget. here's have done in order make hottowel angular application work vs2015 rc
empty webapplication webapi support installed
hottowel.angular.2.3.3 spa nuget
while installing above package, of scripts not being copied automatically. so, added them manually. list of files are
- angular-route.js
- angular-animate.js
- angular-sanitize.js
you can external libraries through google easily. hope resolve issue.
Comments
Post a Comment