-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathKinesisEventHandler.csproj
26 lines (22 loc) · 1.08 KB
/
KinesisEventHandler.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AWSProjectType>Lambda</AWSProjectType>
<AssemblyName>KinesisEventHandler</AssemblyName>
<RootNamespace>KinesisEventHandler</RootNamespace>
<Company>KinesisEventHandler</Company>
<Product>KinesisEventHandler</Product>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
<PackageReference Include="Amazon.Lambda.KinesisEvents" Version="2.2.0" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.3" />
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.5.1" />
<PackageReference Include="AWS.Lambda.Powertools.Metrics" Version="1.7.1" />
<PackageReference Include="AWS.Lambda.Powertools.Tracing" Version="1.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\KinesisEventHandler.Infrastructure\KinesisEventHandler.Infrastructure.csproj" />
</ItemGroup>
</Project>