Skip to content

Commit 9288404

Browse files
authored
Merge pull request #565 from aws-powertools/update-nuget-examples
chore: Update nuget examples
2 parents 9148d02 + 87b27da commit 9288404

File tree

17 files changed

+94
-90
lines changed

17 files changed

+94
-90
lines changed

.github/workflows/docs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,12 @@ jobs:
5757
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a
5858
with:
5959
dotnet-version: 6.0.405
60-
- uses: nikeee/docfx-action@b9c2cf92e3b4aa06878a1410833a8828b4bdcd26 #1.0.0
61-
name: Build Documentation
62-
with:
63-
args: apidocs/docfx.json
60+
61+
- name: Build Api Docs
62+
run: |
63+
dotnet tool install -g docfx
64+
docfx apidocs/docfx.json
65+
6466
- name: Configure AWS credentials
6567
uses: aws-actions/configure-aws-credentials@e1e17a757e536f70e52b5a12b2e8d1d1c60e04ef
6668
with:

examples/BatchProcessing/src/HelloWorld/HelloWorld.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
9-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
10-
<PackageReference Include="AWS.Lambda.Powertools.BatchProcessing" Version="1.1.0" />
11-
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.0" />
12-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
8+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
10+
<PackageReference Include="AWS.Lambda.Powertools.BatchProcessing" Version="1.1.1" />
11+
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.1" />
12+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
1313
</ItemGroup>
1414
</Project>

examples/BatchProcessing/test/HelloWorld.Test/FunctionTest.cs

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
using System.IO;
1818
using System.Text;
1919
using System.Threading.Tasks;
20-
using Amazon.DynamoDBv2.Model;
2120
using Amazon.Lambda.DynamoDBEvents;
2221
using Amazon.Lambda.KinesisEvents;
2322
using Amazon.Lambda.SQSEvents;
@@ -238,47 +237,47 @@ public Task TestDynamoDb()
238237
new()
239238
{
240239
EventID = "1",
241-
Dynamodb = new StreamRecord
240+
Dynamodb = new DynamoDBEvent.StreamRecord
242241
{
243-
Keys = new Dictionary<string, AttributeValue>
242+
Keys = new Dictionary<string, DynamoDBEvent.AttributeValue>
244243
{
245-
{ "Id", new AttributeValue { N = "1" } }
244+
{ "Id", new DynamoDBEvent.AttributeValue { N = "1" } }
246245
},
247-
NewImage = new Dictionary<string, AttributeValue>
246+
NewImage = new Dictionary<string, DynamoDBEvent.AttributeValue>
248247
{
249-
{ "Product", new AttributeValue { S = "{\"Id\":1,\"Name\":\"product-name\",\"Price\":14}" } }
248+
{ "Product", new DynamoDBEvent.AttributeValue { S = "{\"Id\":1,\"Name\":\"product-name\",\"Price\":14}" } }
250249
},
251250
SequenceNumber = "1"
252251
}
253252
},
254253
new()
255254
{
256255
EventID = "1",
257-
Dynamodb = new StreamRecord
256+
Dynamodb = new DynamoDBEvent.StreamRecord
258257
{
259-
Keys = new Dictionary<string, AttributeValue>
258+
Keys = new Dictionary<string, DynamoDBEvent.AttributeValue>
260259
{
261-
{ "Id", new AttributeValue { N = "1" } }
260+
{ "Id", new DynamoDBEvent.AttributeValue { N = "1" } }
262261
},
263-
NewImage = new Dictionary<string, AttributeValue>
262+
NewImage = new Dictionary<string, DynamoDBEvent.AttributeValue>
264263
{
265-
{ "Product", new AttributeValue { S = "failure" } }
264+
{ "Product", new DynamoDBEvent.AttributeValue { S = "failure" } }
266265
},
267266
SequenceNumber = "2"
268267
}
269268
},
270269
new()
271270
{
272271
EventID = "1",
273-
Dynamodb = new StreamRecord
272+
Dynamodb = new DynamoDBEvent.StreamRecord
274273
{
275-
Keys = new Dictionary<string, AttributeValue>
274+
Keys = new Dictionary<string, DynamoDBEvent.AttributeValue>
276275
{
277-
{ "Id", new AttributeValue { N = "1" } }
276+
{ "Id", new DynamoDBEvent.AttributeValue { N = "1" } }
278277
},
279-
NewImage = new Dictionary<string, AttributeValue>
278+
NewImage = new Dictionary<string, DynamoDBEvent.AttributeValue>
280279
{
281-
{ "Product", new AttributeValue { S = "{\"Id\":1,\"Name\":\"product-name\",\"Price\":14}" } }
280+
{ "Product", new DynamoDBEvent.AttributeValue { S = "{\"Id\":1,\"Name\":\"product-name\",\"Price\":14}" } }
282281
},
283282
SequenceNumber = "3"
284283
}
@@ -301,4 +300,4 @@ public Task TestDynamoDb()
301300
return Task.CompletedTask;
302301
}
303302
}
304-
}
303+
}

examples/BatchProcessing/test/HelloWorld.Test/HelloWorld.Tests.csproj

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,22 @@
33
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
6+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
7+
<PackageReference Include="Amazon.Lambda.DynamoDBEvents" Version="3.1.0" />
8+
<PackageReference Include="Amazon.Lambda.KinesisEvents" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.SQSEvents" Version="2.2.0" />
710
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
8-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
9-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
10-
<PackageReference Include="AWSSDK.SQS" Version="3.7.200.43" />
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
12-
<PackageReference Include="xunit" Version="2.4.2" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
11+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
12+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
13+
<PackageReference Include="AWSSDK.SQS" Version="3.7.300.54" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
15+
<PackageReference Include="xunit" Version="2.7.0" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
1417
<PrivateAssets>all</PrivateAssets>
1518
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1619
</PackageReference>
1720
</ItemGroup>
1821
<ItemGroup>
1922
<ProjectReference Include="..\..\src\HelloWorld\HelloWorld.csproj" />
2023
</ItemGroup>
21-
</Project>
24+
</Project>

examples/Idempotency/src/HelloWorld/HelloWorld.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
9-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.6.0" />
10-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
8+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
10+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
1111
<PackageReference Include="AWS.Lambda.Powertools.Idempotency" Version="1.1.0" />
1212
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.0" />
1313
</ItemGroup>

examples/Idempotency/test/HelloWorld.Test/HelloWorld.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
6+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
77
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
8-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
10-
<PackageReference Include="xunit" Version="2.5.1" />
11-
<PackageReference Include="Testcontainers" Version="3.5.0" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
8+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
10+
<PackageReference Include="xunit" Version="2.7.0" />
11+
<PackageReference Include="Testcontainers" Version="3.7.0" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>

examples/Logging/src/HelloWorld/HelloWorld.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
9-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.6.0" />
10-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
8+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
10+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
1111
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.0" />
12-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
12+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
1313
</ItemGroup>
1414
</Project>

examples/Logging/test/HelloWorld.Test/HelloWorld.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
6+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
77
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
8-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
9-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
8+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
9+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1111
<PackageReference Include="NSubstitute" Version="5.1.0" />
12-
<PackageReference Include="xunit" Version="2.5.1" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
12+
<PackageReference Include="xunit" Version="2.7.0" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

examples/Metrics/src/HelloWorld/HelloWorld.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
9-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.6.0" />
10-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
8+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
10+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
1111
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.0" />
1212
<PackageReference Include="AWS.Lambda.Powertools.Metrics" Version="1.6.0" />
13-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
13+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
1414
</ItemGroup>
1515
</Project>

examples/Metrics/test/HelloWorld.Test/HelloWorld.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
6+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
77
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
8-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
9-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
8+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
9+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1111
<PackageReference Include="NSubstitute" Version="5.1.0" />
12-
<PackageReference Include="xunit" Version="2.5.1" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
12+
<PackageReference Include="xunit" Version="2.7.0" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

examples/Parameters/cfn/HelloWorld.Cfn/HelloWorld.Cfn.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<RootNamespace>HelloWorld.Cfn</RootNamespace>
77
</PropertyGroup>
88
<ItemGroup>
9-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
10-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.0" />
9+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
10+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
1111
</ItemGroup>
1212
<ItemGroup>
1313
<ProjectReference Include="..\..\src\HelloWorld\HelloWorld.csproj" />

examples/Parameters/src/HelloWorld/HelloWorld.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
9-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.6.0" />
10-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.0" />
8+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
10+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
1111
<PackageReference Include="AWS.Lambda.Powertools.Parameters" Version="1.2.0" />
1212
</ItemGroup>
1313
</Project>

examples/Parameters/test/HelloWorld.Test/HelloWorld.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
6+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
77
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
8-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
8+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1010
<PackageReference Include="NSubstitute" Version="5.1.0" />
11-
<PackageReference Include="xunit" Version="2.5.1" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
11+
<PackageReference Include="xunit" Version="2.7.0" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>

examples/ServerlessApi/src/LambdaPowertoolsAPI/LambdaPowertoolsAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PublishReadyToRun>true</PublishReadyToRun>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="8.1.0" />
15+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.0" />
1616
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.0" />
1717
<PackageReference Include="AWS.Lambda.Powertools.Metrics" Version="1.6.0" />
1818
<PackageReference Include="AWS.Lambda.Powertools.Tracing" Version="1.4.0" />

examples/ServerlessApi/test/LambdaPowertoolsAPI.Tests/LambdaPowertoolsAPI.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
</Content>
1717
</ItemGroup>
1818
<ItemGroup>
19-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
19+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
2020
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
21-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.6.0" />
22-
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.7" />
23-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
24-
<PackageReference Include="xunit" Version="2.5.1" />
25-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
21+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
22+
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.300" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
24+
<PackageReference Include="xunit" Version="2.7.0" />
25+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
</PackageReference>

examples/Tracing/src/HelloWorld/HelloWorld.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
9-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.6.0" />
10-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
8+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
10+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
1111
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.0" />
1212
<PackageReference Include="AWS.Lambda.Powertools.Tracing" Version="1.4.0" />
13-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
13+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
1414
</ItemGroup>
1515
</Project>

examples/Tracing/test/HelloWorld.Test/HelloWorld.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
6+
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
77
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
8-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
9-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.201.13" />
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
8+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
9+
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.301.18" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1111
<PackageReference Include="NSubstitute" Version="5.1.0" />
12-
<PackageReference Include="xunit" Version="2.5.1" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
12+
<PackageReference Include="xunit" Version="2.7.0" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

0 commit comments

Comments
 (0)