Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the differences between a dotnet cli and a angular cli basic project template?

When I generate a new Angular 4 project using dotnet new angular and ng new, what are the chief differences between the two generated projects?

I have done a folder compare which was very quick and told me they have a few differences on that level. I am not very interested in those differences.

I'm only interested in the handful of high-level differences. An example is splitting a module for pre-rendering in one project and not the other. Given the size of the scaffolded projects, a list of differences wouldn't be more than say 10, so I'm sure asking about the high-level difference is not too broad a question here.

like image 398
ProfK Avatar asked Aug 04 '17 09:08

ProfK


1 Answers

One difference that I noticed is that dotnet new angular will create project with webpack.json, whereas ng new will create with .angular-cli.json

like image 50
Faisal Avatar answered Nov 10 '22 13:11

Faisal