-
Notifications
You must be signed in to change notification settings - Fork 501
Expand file tree
/
Copy pathAmazon.Lambda.TestTool.IntegrationTests.csproj
More file actions
43 lines (38 loc) · 2.01 KB
/
Amazon.Lambda.TestTool.IntegrationTests.csproj
File metadata and controls
43 lines (38 loc) · 2.01 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="2.5.1" />
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.13.0" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
<PackageReference Include="AWSSDK.APIGateway" Version="4.0.0" />
<PackageReference Include="AWSSDK.CloudFormation" Version="4.0.0" />
<PackageReference Include="AWSSDK.IdentityManagement" Version="4.0.0" />
<PackageReference Include="AWSSDK.ApiGatewayV2" Version="4.0.0" />
<PackageReference Include="AWSSDK.Lambda" Version="4.0.0" />
<PackageReference Include="AWSSDK.SecurityToken" Version="4.0.0" />
<PackageReference Include="AWSSDK.SQS" Version="4.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Amazon.Lambda.TestTool.Tests.Common\Amazon.Lambda.TestTool.Tests.Common.csproj" />
</ItemGroup>
</Project>