From a36d67fe073ff5926099783fa1e7e98b4201e63f Mon Sep 17 00:00:00 2001
From: Eric Erhardt <eric.erhardt@microsoft.com>
Date: Wed, 6 Sep 2017 19:55:13 -0500
Subject: [PATCH] Fix update-dependencies by using the correct TFM.

stage0 comes with 2.1 runtime now, so need to use netcoreapp2.1.
---
 build_projects/update-dependencies/update-dependencies.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build_projects/update-dependencies/update-dependencies.csproj b/build_projects/update-dependencies/update-dependencies.csproj
index 2f82553fe..af401660d 100644
--- a/build_projects/update-dependencies/update-dependencies.csproj
+++ b/build_projects/update-dependencies/update-dependencies.csproj
@@ -4,7 +4,7 @@
   <PropertyGroup>
     <Description>Updates the repos dependencies</Description>
     <OutputType>Exe</OutputType>
-    <TargetFramework>netcoreapp2.0</TargetFramework>
+    <TargetFramework>netcoreapp2.1</TargetFramework>
   </PropertyGroup>
 
   <ItemGroup>