asp.net - Difference between Yoeman generators for aspnet and aspnet-angular -


when install generators yeoman, go this.

npm install --global generator-aspnet

however, playing embedded menu system of yeoman, noticed lists other templates aspnet. 1 of them aspnet-angular. went webpage of less verbose learned nothing there.

what difference between 2 generators: generator-aspnet , generator-aspnet-angular exactly? there difference (compared going first 1 , adding angular package manually npm)?

nice thing on open source stuff can see access source code.

following github repository in linked npm package, can see in generators/app/templates/controller/aboutcontroller.cs file following lines

using system.web; using system.web.mvc; 

which tells us, it's generator legacy asp.net mvc (up mvc 5), because system.web.* namespaces have been removed asp.net core, since had tight coupling iis prevented asp.net core become portable , run w/o iis.


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -