cs11dotnet7/vscode/Chapter04/HotReloading/Program.cs

8 lines
237 B
C#
Raw Normal View History

2022-03-15 09:17:56 +01:00
/* 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);
}