Posts

Showing posts from July, 2016
I've been having a real struggle trying to set up a demo application in Visual Studio 2015 using Asp.NET Core RC2 and Angular2 RC4. My package.json file (the one npm uses) was only picking up the Angular2 beta releases.  I finally found the solution at  https://github.com/angular/angular/blob/master/CHANGELOG.md in the section for 2.0.0-rc.0. Open a command window and change directory to the root directory of the solution (i.e. \<solution name>\src\<project name). Then run the command:   npm install --save @angular/core @angular/compiler @angular/common @angular/platform-browser @angular/platform-browser-dynamic rxjs@5.0.0-beta.6 zone.js@0.6.12. The dependencies section of my package.json file automagically updated to  "dependencies" : {     "@angular/common" : "^2.0.0-rc.4" ,     "@angular/compiler" : "^2.0.0-rc.4" ,     "@angular/core" : "^2.0.0-rc.4" ,     "@angular/platform-browser&