Initial commit

This commit is contained in:
Mark J Price 2022-03-15 08:17:56 +00:00
parent e13b6e59f1
commit f7cc057037
6 changed files with 71 additions and 3 deletions

View file

@ -0,0 +1,8 @@
/* Visual Studio: run the app, change the message, click Hot Reload button.
* Visual Studio Code: run the app using dotnet watch, change the message. */
while (true)
{
WriteLine("Goodbye, Hot Reload!");
await Task.Delay(2000);
}