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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The **AWS Message Processing Framework for .NET** is an AWS-native framework tha
10
10
11
11
Add the `AWS.Messaging` NuGet package to your project:
12
12
```
13
-
dotnet add package AWS.Messaging --prerelease
13
+
dotnet add package AWS.Messaging
14
14
```
15
15
16
16
The framework integrates with .NET's [dependency injection (DI) service container](https://learn.microsoft.com/en-us/dotnet/core/extensions/dependency-injection). You can configure the framework during your application's startup by calling `AddAWSMessageBus` to add it to the DI container.
Copy file name to clipboardExpand all lines: src/AWS.Messaging/Configuration/AWSClientProvider.cs
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
-
usingSystem.Reflection;
5
4
usingAmazon.Runtime;
6
5
usingAWS.Messaging.Telemetry;
7
6
@@ -29,18 +28,18 @@ public AWSClientProvider(IServiceProvider serviceProvider)
29
28
publicTGetServiceClient<T>()whereT:IAmazonService
30
29
{
31
30
varserviceClient=_serviceProvider.GetService(typeof(T))??thrownewFailedToFindAWSServiceClientException($"Failed to find AWS service client of type {typeof(T)}");
0 commit comments