From e0898212fc727af46142c3f9a5d7c3929c565129 Mon Sep 17 00:00:00 2001 From: daniv-msft <48293037+daniv-msft@users.noreply.github.com> Date: Tue, 30 Apr 2019 09:01:48 -0700 Subject: [PATCH] Add usings needed for quickstart so that users don't have to add them themselves --- .../getting-started/webfrontend/Controllers/HomeController.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs b/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs index 0eeaa6bb2..bd717d764 100644 --- a/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs +++ b/samples/dotnetcore/getting-started/webfrontend/Controllers/HomeController.cs @@ -1,7 +1,10 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Collections.Generic; using System.Diagnostics; +using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using webfrontend.Models;