> :loudspeaker: Update With v0.38.0, you can no...
# general
f
📢 Update
With v0.38.0, you can now write your Lambda functions in C#.
Copy code
npx create-serverless-stack@latest my-sst-app --language csharp
Point the Function’s 
srcPath
 to the 
.csproj
folder, and configure
handler
in this format
ASSEMBLY::NAMESPACE.CLASS::FUNCTION
. For example:
Copy code
new sst.Function(this, "Fn", {
  runtime: "dotnetcore3.1",
  srcPath: "src/MyApp",
  handler: "MyApp::MyApp.Api::ListNotes",
});
More details on what C# functions take.
d
woooowww the F# is finally unlocked!
f
@Dennis Dang not yet!
sst start
currently only watches for
.cs
and
.csproj
. Let me add F# support with a starter template.
d
thanks Frank! my new super spanking startup's gonna use F# now. /joke but this will certainly be a free gateway to the .net world without the cost of azure.
f
@Dennis Dang added F# support in v0.39.0 👈