You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,9 +110,12 @@ public void ConfigureServices(IServiceCollection services)
110
110
}
111
111
```
112
112
113
-
The most important difference is that `AddAwsService` extensions method is used instead of `AddAWSService` used in `AWSSDK.Extensions.NETCore.Setup`. The reason for this will be explained later in this section.
113
+
The most important difference is that `AddAwsService` extensions method is used instead of `AddAWSService` used in `AWSSDK.Extensions.NETCore.Setup`. The reason for this will be explained later in this section.
114
+
114
115
In addition, the `AddLocalStack` extension method is also used.
115
116
117
+
<e><b>(Alternatively, `AddAWSServiceLocalStack` method can be used to prevent mix-up with `AddAWSService`.)</b><e>
118
+
116
119
`AddLocalStack` extension method is responsible for both configurations and adding of `LocalStack.Client` dependencies to service collection.
117
120
118
121
You can configure `LocalStack.Client` by using entries in the `appsettings.json` files, as shown in the following example.
@@ -177,6 +180,7 @@ If the `UseLocalStack` entry is `true`, it uses the [Session](https://github.com
177
180
178
181
It is named as `AddAwsService` to avoid name conflict with `AddAWSService`.
179
182
183
+
<e><b>(Alternatively, `AddAWSServiceLocalStack` method can be used to prevent mix-up with `AddAWSService`.)</b><e>
0 commit comments