Skip to content

Commit 3f7cde2

Browse files
authored
Merge pull request #329 from dotnet/main
✅ Merge `main` into `live`
2 parents 7904b9d + 01d6c0f commit 3f7cde2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/deployment/manifest-format.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dotnet new aspire-starter --use-redis-cache `
2525
Manifest generation is achieved by running `dotnet build` with a special target:
2626

2727
```dotnetcli
28-
dotnet run --project AspireApp.AppHost\AspireApp.AppHost.csproj `
28+
dotnet build --project AspireApp.AppHost\AspireApp.AppHost.csproj `
2929
-- `
3030
--publisher manifest `
3131
--output-path aspire-manifest.json

docs/get-started/build-aspire-apps-with-nodejs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The second update is the to the _package.json_ file. This file is used to config
131131

132132
The `scripts` section of the _package.json_ file is used to define the `start` script. This script is used by the `npm start` command to start the Angular client app. The `start` script is configured to use the `run-script-os` package to set the port, which delegates to the `ng serve` command passing the appropriate `--port` switch based on the OS-appropriate syntax.
133133

134-
In order to make HTTP calls to the "weatherapi" service, the Angular client app needs to be configured to provide the Angular `HttpClient` for dependency injection. This is achieved by importing the `HttpClientModule` in the _app.config.ts_ file.
134+
In order to make HTTP calls to the "weatherapi" service, the Angular client app needs to be configured to provide the Angular `HttpClient` for dependency injection. This is achieved by using the `provideHttpClient` helper function while configuring the application in the _app.config.ts_ file.
135135

136136
:::code language="typescript" source="~/aspire-samples/samples/AspireWithJavaScript/AspireJavaScript.Angular/src/app/app.config.ts":::
137137

0 commit comments

Comments
 (0)