-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBervProject.MergePDF.Lambda.csproj
More file actions
26 lines (26 loc) · 1.42 KB
/
BervProject.MergePDF.Lambda.csproj
File metadata and controls
26 lines (26 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AWSProjectType>Lambda</AWSProjectType>
<!-- This property makes the build directory similar to a publish directory and helps the AWS .NET Lambda Mock Test Tool find project dependencies. -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<!-- Generate ready to run images during publishing to improvement cold starts. -->
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Logging.AspNetCore" Version="4.1.1" />
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="4.0.3.27" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.8.1" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.5" />
<PackageReference Include="Amazon.Lambda.Annotations" Version="1.9.0" />
<PackageReference Include="AWSSDK.SimpleEmailV2" Version="4.0.12.5" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\BervProject.MergePDF.S3\BervProject.MergePDF.S3.csproj" />
</ItemGroup>
</Project>