-
Notifications
You must be signed in to change notification settings - Fork 495
Expand file tree
/
Copy pathAmazon.Lambda.ApplicationLoadBalancerEvents.csproj
More file actions
26 lines (23 loc) · 1.27 KB
/
Amazon.Lambda.ApplicationLoadBalancerEvents.csproj
File metadata and controls
26 lines (23 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\buildtools\common.props" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net8.0</TargetFrameworks>
<Description>Amazon Lambda .NET Core support - Application Load Balancer package.</Description>
<AssemblyTitle>Amazon.Lambda.ApplicationLoadBalancerEvents</AssemblyTitle>
<Version>2.2.1</Version>
<AssemblyName>Amazon.Lambda.ApplicationLoadBalancerEvents</AssemblyName>
<PackageId>Amazon.Lambda.ApplicationLoadBalancerEvents</PackageId>
<PackageTags>AWS;Amazon;Lambda</PackageTags>
<!--
Disabling the EOL check because when we remove support in our libraries is a different and slower cycle then the framework's cycle.
We need to be confident there is no longer a critical mass of customers still using the framework version and we need to be
ready to make a major version release of our libraries.
-->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
<WarningsAsErrors>IL2026,IL2067,IL2075</WarningsAsErrors>
<IsTrimmable>true</IsTrimmable>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
</PropertyGroup>
</Project>