serverless / serverless-azure-functions

Serverless Azure Functions Plugin – Add Azure Functions support to the Serverless Framework
MIT License
266 stars 161 forks source link

fix: Add support for .net 6 runtime (closes #614) #615

Open maciej-bielecki opened 1 year ago

maciej-bielecki commented 1 year ago

What did you implement:

Added .net6 runtime version to configs. Without it we were not able to use this runtime in serverless.yml. Closes #614

How did you implement it:

I've added DOTNET60 to enum Runtime, other necessary structures and register commands so that it can be build.

How can we verify it:

Use runtime: dotnet6.0 in serverless.yml file. Use project targeting net6.0, also azure functions v4 can be used:

Examples:

Note: Run npm run test:ci to run all validation checks on proposed changes

Is this ready for review?: YES Is it a breaking change?: NO

alexanderwink commented 1 year ago

Any plans on getting this PR merged?