-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlambda-cs.csproj
More file actions
executable file
·29 lines (27 loc) · 971 Bytes
/
lambda-cs.csproj
File metadata and controls
executable file
·29 lines (27 loc) · 971 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>9.0.1</Version>
</PackageReference>
<PackageReference Include="Amazon.Lambda.Core">
<Version>1.0.0*</Version>
</PackageReference>
<PackageReference Include="Amazon.Lambda.Serialization.Json">
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Amazon.Lambda.Tools">
<Version>1.0.0-preview1</Version>
<Type>build</Type>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Tools Include="Amazon.Lambda.Tools">
<Version>1.0.0-preview1</Version>
</Tools>
</ItemGroup>
</Project>