|
4 | 4 |
|
5 | 5 | <PropertyGroup>
|
6 | 6 | <Description>Amazon.Lambda.AspNetCoreServer makes it easy to run ASP.NET Core Web API applications as AWS Lambda functions.</Description>
|
7 |
| - <TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks> |
| 7 | + <TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks> |
8 | 8 | <AssemblyTitle>Amazon.Lambda.AspNetCoreServer</AssemblyTitle>
|
9 |
| - <VersionPrefix>4.1.0</VersionPrefix> |
| 9 | + <VersionPrefix>5.0.0-preview1</VersionPrefix> |
10 | 10 | <AssemblyName>Amazon.Lambda.AspNetCoreServer</AssemblyName>
|
11 | 11 | <PackageId>Amazon.Lambda.AspNetCoreServer</PackageId>
|
12 | 12 | <PackageTags>AWS;Amazon;Lambda;aspnetcore</PackageTags>
|
|
17 | 17 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
18 | 18 | <DefineConstants>NETSTANDARD_2_0,NETCOREAPP_2_1</DefineConstants>
|
19 | 19 | </PropertyGroup>
|
20 |
| - <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'"> |
21 |
| - <DefineConstants>NETCOREAPP_3_0</DefineConstants> |
| 20 | + <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> |
| 21 | + <DefineConstants>NETCOREAPP_3_1</DefineConstants> |
22 | 22 | </PropertyGroup>
|
23 | 23 |
|
24 | 24 | <ItemGroup>
|
25 | 25 | <ProjectReference Include="..\Amazon.Lambda.ApplicationLoadBalancerEvents\Amazon.Lambda.ApplicationLoadBalancerEvents.csproj" />
|
26 | 26 | <ProjectReference Include="..\Amazon.Lambda.Core\Amazon.Lambda.Core.csproj" />
|
27 | 27 | <ProjectReference Include="..\Amazon.Lambda.Logging.AspNetCore\Amazon.Lambda.Logging.AspNetCore.csproj" />
|
28 |
| - <ProjectReference Include="..\Amazon.Lambda.Serialization.Json\Amazon.Lambda.Serialization.Json.csproj" /> |
29 | 28 | <ProjectReference Include="..\Amazon.Lambda.APIGatewayEvents\Amazon.Lambda.APIGatewayEvents.csproj" />
|
30 | 29 | </ItemGroup>
|
31 | 30 |
|
32 | 31 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
33 | 32 | <PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />
|
34 | 33 | <PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.0" />
|
35 | 34 | <PackageReference Include="Newtonsoft.Json" Version="10.0.1" />
|
| 35 | + <ProjectReference Include="..\Amazon.Lambda.Serialization.Json\Amazon.Lambda.Serialization.Json.csproj" /> |
36 | 36 | </ItemGroup>
|
37 |
| - <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'"> |
| 37 | + <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> |
38 | 38 | <FrameworkReference Include="Microsoft.AspNetCore.App" />
|
| 39 | + <ProjectReference Include="..\Amazon.Lambda.Serialization.SystemTextJson\Amazon.Lambda.Serialization.SystemTextJson.csproj" /> |
39 | 40 | </ItemGroup>
|
40 | 41 |
|
41 | 42 | </Project>
|
0 commit comments