summaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-03-22 15:47:29 +0000
committerIan C <ianc@noddybox.co.uk>2024-03-22 15:47:29 +0000
commit1f61b2afecb32b5d75268642a49ce9556f505796 (patch)
tree617cc8e789fb63f9123a6e6f53a9bafa6cc38bb6 /Program.cs
Inital commit of dotnet new
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..bc8438c
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,6 @@
+var builder = WebApplication.CreateBuilder(args);
+var app = builder.Build();
+
+app.MapGet("/", () => "Hello World!");
+
+app.Run();