-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCommandQuery.AWSLambda.csproj
More file actions
49 lines (41 loc) · 1.85 KB
/
CommandQuery.AWSLambda.csproj
File metadata and controls
49 lines (41 loc) · 1.85 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
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>4.0.0</Version>
<PackageReleaseNotes>
- Bump Amazon.Lambda.Core to 2.2.0
- Bump Amazon.Lambda.APIGatewayEvents to 2.7.0
- Make ILambdaLogger parameter required for HandleAsync
- Add support for APIGatewayHttpApiV2ProxyRequest
</PackageReleaseNotes>
<Authors>Henrik Lau Eriksson</Authors>
<Description>Command Query Separation for AWS Lambda ⚡
✔️ Provides generic function support for commands and queries with Amazon API Gateway
✔️ Enables APIs based on HTTP POST and GET
📄 https://hlaueriksson.me/CommandQuery.AWSLambda/
</Description>
<PackageId>CommandQuery.AWSLambda</PackageId>
<PackageProjectUrl>https://github.com/hlaueriksson/CommandQuery</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>CommandQuery.AWSLambda.md</PackageReadmeFile>
<PackageTags>CommandQuery;Command;Query;CQS;AWS;Amazon;Lambda</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\icon.png" Link="icon.png" Pack="true" PackagePath="\" />
<None Include="..\..\CommandQuery.AWSLambda.md" Pack="true" PackagePath="\" />
</ItemGroup>
<Import Project="../../Analyzers.props" />
<ItemGroup>
<InternalsVisibleTo Include="CommandQuery.AWSLambda.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="2.8.0" />
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommandQuery.SystemTextJson\CommandQuery.SystemTextJson.csproj" />
<ProjectReference Include="..\CommandQuery\CommandQuery.csproj" />
</ItemGroup>
</Project>