mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-06 06:43:47 +00:00
Initial commit
This commit is contained in:
parent
e13b6e59f1
commit
f7cc057037
6 changed files with 71 additions and 3 deletions
8
vscode/Chapter04/HotReloading/Program.cs
Normal file
8
vscode/Chapter04/HotReloading/Program.cs
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue