Adding a new dotnet environment, supporting dotnet core 2.0. Project structure changed. Project.json was abandoned. Project.csproj is now used.
10 lines
157 B
C#
10 lines
157 B
C#
using Fission.DotNetCore.Api;
|
|
|
|
public class FissionFunction
|
|
{
|
|
public string Execute(FissionContext context)
|
|
{
|
|
return "Hello World!";
|
|
}
|
|
}
|