-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathPublicationManagerService.csproj
More file actions
30 lines (25 loc) · 1.38 KB
/
PublicationManagerService.csproj
File metadata and controls
30 lines (25 loc) · 1.38 KB
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
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Unicorn.Web.PublicationManagerService</AssemblyName>
<RootNamespace>Unicorn.Web.PublicationManagerService</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.3" />
<PackageReference Include="Amazon.Lambda.CloudWatchEvents" Version="4.4.1" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.8.1" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.5" />
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="3.1.0" />
<PackageReference Include="AWS.Lambda.Powertools.Metrics" Version="3.1.0" />
<PackageReference Include="AWS.Lambda.Powertools.Tracing" Version="3.1.0" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="4.0.15" />
<PackageReference Include="AWSSDK.EventBridge" Version="4.0.5.16" />
<PackageReference Include="AWSSDK.XRay" Version="4.0.3.14" />
<PackageReference Include="AWSXRayRecorder.Handlers.AwsSdk" Version="2.14.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
</Project>