Below you will find pages that utilize the taxonomy term “AWS”
Blog
Updating an AWS Lambda app to .NET 6.0
The long awaited support for .NET 6.0 on AWS Lambda has finally been released. My Twitter bot runs on .NET Core 3.1 in a Lambda function and I have been meaning to update it to .NET 6 for a while. So let’s do just that!
I’ll be following the steps on the announcement blog post to migrate to 6.0.
Project file The following items need to be updated in the project file:
Blog
Updating an AWS Lambda app to from .NET Core 2.1 to 3.1
The long awaited support for .NET Core 3.1 on AWS Lambda has finally been released. My Twitter bot runs on .NET Core 2.1 in a Lambda function and I have been meaning to update it to .NET Core 3.1 since the beginning. So let’s do just that!
I’ll be following the steps on the announcement blog post to migrate to 3.1.
Project file First up, the TargetFrameowrk in the project file (csproj) needs to be updated, so let’s do that: