-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCustomRuntimeListBucketsNET7.csproj
More file actions
26 lines (23 loc) · 1.22 KB
/
CustomRuntimeListBucketsNET7.csproj
File metadata and controls
26 lines (23 loc) · 1.22 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">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<AWSProjectType>Lambda</AWSProjectType>
<!-- Enable trimming to reduce package size of self contained publish -->
<PublishTrimmed>true</PublishTrimmed>
<!-- Generate ready to run images during publishing to improvement cold starts. -->
<PublishReadyToRun>true</PublishReadyToRun>
<!-- Assembly name must be called "bootstrap" which is the name of the executable that Lambda looks for. -->
<AssemblyName>bootstrap</AssemblyName>
<!-- 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>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.8.0" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.0" />
<PackageReference Include="AWSSDK.S3" Version="3.7.9.2" />
</ItemGroup>
</Project>