scaffold default dotnet api app

This commit is contained in:
2026-02-27 19:13:17 -06:00
parent 2492e2154d
commit 5d35e5d552
9 changed files with 174 additions and 0 deletions

15
api/test.cs Normal file
View File

@@ -0,0 +1,15 @@
// this is a test program for making sure your dotnet environment is working properly
/*
using System.Diagnostics;
using System;
Stopwatch sw = new Stopwatch();
sw.Start();
Console.WriteLine("Hi mom !");
Console.WriteLine("doing a schmunguss");
sw.Stop();
Console.WriteLine("Time elapsed: {0}", sw.Elapsed);
*/