Reputation: 11
First installed angular CLI globally:
npm install @angular/cli@latest -g
Then I create an angular project outside using by CLI:
ng new hello-world
Copy .angular-cli.json file into the root my project:
Modify .angular-cli.json file: "root" : "src" change to "root" : "ClientApp"
I Installed angularCli dev in my root project: cd MyProject
Then
npm install @angular/cli@latest --save-dev
I Went to that directory :
cd ClientApp/app/components
Then I wrote: ng g c MyComponentName
It has shown me this screen:
Upvotes: 1
Views: 1449
Reputation: 619
You need to rename the file app.module.shared.ts
To app.module.ts
under ClientApp/app and correct the file paths in app.module.browser.ts
and app.module.server.ts
accordingly.
Tested under:
Environment : Development
Target Framework : netcoreapp2.0
SPA template : angular
Upvotes: 0