الملفات
github-actions-demos/dotnet-sample/Program.cs
Chris Ayers 73f40f3d2a updated demo
2023-01-11 13:46:28 -05:00

7 أسطر
137 B
C#

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello from CodeMash!");
app.Run();