首页 > 解决方案 > .Net 5.0 not supported in AWS Lambda

问题描述

I have publish aws serverless app to Amazon Lambda but it is showing me below error that it is not able to find .net 5.0 framework. enter image description here Does Amazon Lambda not support .NET 5.0 framework ?

标签: amazon-web-servicesaws-lambda

解决方案


No Lambda does not have a native runtime for .NET 5. You can see the currently supported runtimes listed here. Right now only .NET Core versions 2.1 and 3.1 are supported natively.

You can use .NET 5 if you use containerized lambda functions. See docs for info on that.


推荐阅读