2

Is it possible to write a .NET Framework (not .NET Core) lambda function?

I have a legacy WCF SOAP service that is not compatible with .NET Core. I know I can write a .NET Framework application and deploy to EC2. Is it possible to deploy a .NET Framework application to AWS in a more scalable/serverless way such as a lambda function?

1 Answer 1

1

At this time there is no built in support for the legacy .NET framework, all available runtime and version are here.

If you wanted to run a framework/language that is not included on this list your best option is to look at building a Lambda Layer containing the packages you require.

Other than this your only option would be to deploy it to another service, if you can package it into a container then you could run it on Fargate (which is a serverless container orchestration service).

Sign up to request clarification or add additional context in comments.

2 Comments

Are there any examples of a .NET Framework Lambda Layer you have seen?
Not from what I have seen unfortunatelly there are for other languages such as PHP: aws.amazon.com/blogs/apn/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.