-
Notifications
You must be signed in to change notification settings - Fork 488
/
Copy pathAmazon.Lambda.TestTool.Tests.NETCore21.csproj
36 lines (30 loc) · 1.6 KB
/
Amazon.Lambda.TestTool.Tests.NETCore21.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>NETCORE_2_1</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="2.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="LitJson" Version="0.13.0" />
<PackageReference Include="AWSSDK.SQS" Version="3.7.0" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Amazon.Lambda.TestTool\Amazon.Lambda.TestTool.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.1.0" />
<ProjectReference Include="..\LambdaFunctions\netcore21\FunctionSignatureExamples\FunctionSignatureExamples.csproj" />
<ProjectReference Include="..\LambdaFunctions\netcore21\S3EventFunction\S3EventFunction.csproj" />
<ProjectReference Include="..\LambdaFunctions\netcore21\ServerlessTemplateExample\ServerlessTemplateExample.csproj" />
<ProjectReference Include="..\LambdaFunctions\netcore21\ToUpperFunc\ToUpperFunc.csproj" />
</ItemGroup>
<Import Project="..\Amazon.Lambda.TestTool.Tests.Shared\Amazon.Lambda.TestTool.Tests.Shared.projitems" Label="Shared" />
</Project>