From cb44cf9c07f0cc6ab89554aa99b85f72b4b10fb0 Mon Sep 17 00:00:00 2001 From: Florian Dohrendorf Date: Fri, 2 Mar 2018 00:12:44 +0100 Subject: [PATCH] adjust build blazor tooling instructions --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b2df4f29d..31a8365ee7 100644 --- a/README.md +++ b/README.md @@ -63,12 +63,17 @@ Run `dotnet test test\AllTests.proj` ## Build VS Tooling Prerequisites: -- Visual Studio 2017 15.5 (or newer) +- Visual Studio 2017 15.6 (or newer) - Visual Studio extension development features (install via Visual Studio Installer) Open a VS Developer Command Prompt -Run `msbuild BlazorTooling.sln` from the solution directory. +Run the following instructions from the solution directory. + +```shell +msbuild BlazorTooling.sln /t:Restore +msbuild BlazorTooling.sln +``` ## Contributing