Adding a new dotnet environment, supporting dotnet core 2.0. Project structure changed. Project.json was abandoned. Project.csproj is now used.
10 lines
265 B
C#
10 lines
265 B
C#
using System;
|
|
using Fission.DotNetCore.Api;
|
|
|
|
public class FissionFunction
|
|
{
|
|
public string Execute(FissionContext context){
|
|
context.Logger.WriteInfo("executing.. {0}", context.Arguments["text"]);
|
|
return (string)context.Arguments["text"];
|
|
}
|
|
} |