autogen/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs
Xiaoyun Zhang 9ba14ee15b
Fix dotnet test and reformat dotnet code (#3603)
* fix test

* install aspire workload

* format

* fix build error

* fix format

* format
2024-10-02 14:42:27 -04:00

14 lines
293 B
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// TopLevelStatementFunctionExample.cs
using AutoGen.Core;
public partial class TopLevelStatementFunctionExample
{
[Function]
public Task<string> Add(int a, int b)
{
return Task.FromResult($"{a + b}");
}
}