1.2 KiB
1.2 KiB
This file explains how Visual Studio created the project.
The following tools were used to generate this project:
- Angular CLI (ng)
The following steps were used to generate this project:
- Create Angular project with ng:
ng new awesomemicroservices.client --defaults --skip-install --skip-git --no-standalone. - Add
proxy.conf.jsto proxy calls to the backend ASP.NET server. - Add
aspnetcore-https.jsscript to install https certs. - Update
package.jsonto callaspnetcore-https.jsand serve with https. - Update
angular.jsonto point toproxy.conf.js. - Update
app.component.tscomponent to fetch and display weather information. - Modify
app.component.spec.tswith updated tests. - Update
app.module.tsto import the HttpClientModule. - Create project file (
awesomemicroservices.client.esproj). - Create
launch.jsonto enable debugging. - Update package.json to add
jest-editor-support. - Update package.json to add
run-script-os. - Add
karma.conf.jsfor unit tests. - Update
angular.jsonto point tokarma.conf.js. - Add project to solution.
- Update proxy endpoint to be the backend server endpoint.
- Add project to the startup projects list.
- Write this file.