generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathPropertiesService.csproj
More file actions
30 lines (30 loc) · 1.83 KB
/
PropertiesService.csproj
File metadata and controls
30 lines (30 loc) · 1.83 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>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 improve cold start time. -->
<PublishReadyToRun>true</PublishReadyToRun>
<AssemblyName>Unicorn.Properties.PropertiesService</AssemblyName>
<RootNamespace>Unicorn.Properties.PropertiesService</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.CloudWatchEvents" Version="4.4.0" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.3.0" />
<PackageReference Include="Amazon.Lambda.DynamoDBEvents" Version="3.1.1" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.3" />
<PackageReference Include="AWS.Lambda.Powertools.Logging" Version="1.6.2" />
<PackageReference Include="AWS.Lambda.Powertools.Metrics" Version="1.8.0" />
<PackageReference Include="AWS.Lambda.Powertools.Tracing" Version="1.5.2" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.401.11" />
<PackageReference Include="AWSSDK.StepFunctions" Version="3.7.402.21" />
<PackageReference Include="AWSXRayRecorder.Handlers.AwsSdk" Version="2.13.0" />
</ItemGroup>
</Project>