-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayeredCraft.Lambda.AspNetCore.HostingExtensions.csproj
More file actions
27 lines (24 loc) · 1.5 KB
/
LayeredCraft.Lambda.AspNetCore.HostingExtensions.csproj
File metadata and controls
27 lines (24 loc) · 1.5 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>LayeredCraft.Lambda.AspNetCore.Hosting</RootNamespace>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>default</LangVersion>
<PackageId>LayeredCraft.Lambda.AspNetCore.HostingExtensions</PackageId>
<Title>LayeredCraft.Lambda.AspNetCore.HostingExtensions</Title>
<Description>ASP.NET Core hosting extensions for AWS Lambda, providing timeout-aware cancellation tokens and graceful request handling. Links Lambda timeout detection with HTTP request cancellation for improved reliability and proper resource cleanup in serverless applications.</Description>
<PackageTags>aws;lambda;aspnetcore;hosting;middleware;timeout;cancellation;serverless;dotnet;layeredcraft</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.2.1" />
<PackageReference Include="LayeredCraft.StructuredLogging" Version="1.1.5.15" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\docs\assets\icon.png" Pack="true" PackagePath="" Visible="False" />
<None Include="..\..\README.md" Pack="true" PackagePath="" Visible="False" />
</ItemGroup>
</Project>