From 12acfec1dbdedfa79fde4e3a5d11c26ebe35ffb0 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Sun, 4 Jun 2017 23:44:39 +0200 Subject: [PATCH] Respond to feedback --- docs/guides/getting_started/samples/intro/structure.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guides/getting_started/samples/intro/structure.cs b/docs/guides/getting_started/samples/intro/structure.cs index d611e1240..bdbdf8fe4 100644 --- a/docs/guides/getting_started/samples/intro/structure.cs +++ b/docs/guides/getting_started/samples/intro/structure.cs @@ -70,6 +70,8 @@ class Program // your project is targeting .NET 4.5.2 or lower. You'll need // to adjust your project's target framework to 4.6 or higher // (instructions for this are easily Googled). + // If you *need* to run on .NET 4.5 for compat/other reasons, + // the alternative is to 'return Task.Delay(0);' instead. return Task.CompletedTask; }