You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.2 KiB

  1. This file explains how Visual Studio created the project.
  2. The following tools were used to generate this project:
  3. - Angular CLI (ng)
  4. The following steps were used to generate this project:
  5. - Create Angular project with ng: `ng new awesomemicroservices.client --defaults --skip-install --skip-git --no-standalone `.
  6. - Add `proxy.conf.js` to proxy calls to the backend ASP.NET server.
  7. - Add `aspnetcore-https.js` script to install https certs.
  8. - Update `package.json` to call `aspnetcore-https.js` and serve with https.
  9. - Update `angular.json` to point to `proxy.conf.js`.
  10. - Update `app.component.ts` component to fetch and display weather information.
  11. - Modify `app.component.spec.ts` with updated tests.
  12. - Update `app.module.ts` to import the HttpClientModule.
  13. - Create project file (`awesomemicroservices.client.esproj`).
  14. - Create `launch.json` to enable debugging.
  15. - Update package.json to add `jest-editor-support`.
  16. - Update package.json to add `run-script-os`.
  17. - Add `karma.conf.js` for unit tests.
  18. - Update `angular.json` to point to `karma.conf.js`.
  19. - Add project to solution.
  20. - Update proxy endpoint to be the backend server endpoint.
  21. - Add project to the startup projects list.
  22. - Write this file.