openwhisk-runtime-dotnet
openwhisk-runtime-dotnet copied to clipboard
Apache OpenWhisk Runtime .Net supports Apache OpenWhisk functions written in .Net languages
I have a c# OpenWhisk Action: ```csharp using System; using IHWhisk.Models; using Newtonsoft.Json.Linq; namespace IHWhisk { public class Hello { public JObject Main(JObject args) { var handian = new Handian();...
Based on conversation in https://github.com/apache/openwhisk-runtime-dotnet/issues/34 and https://github.com/apache/openwhisk-runtime-dotnet/pull/50... Problem: OpenWhisk users creating .NET actions need to add a dependency on a 3rd party JSON library (currently Newtonsoft.Json as of the dotnet:3.1...
> You’d need to ask ibm :) > > As an Apache project we’d love the contribution, which you could then build and push to dockerhub and use independent of...
Support for the .NET 8 runtime.
I mentioned that this could be a good improvement on the code for this runtime in #91 I probably got carried away with some other changes not specific to enabling...
As the runtime continues to evolve, I think it might be a good idea to take advantage of new features of each release of .NET. One of the features released...