From d5b9d203ea6bfbbd4a66c18188a8d6db464a0320 Mon Sep 17 00:00:00 2001 From: AMZN-nggieber <52797929+AMZN-nggieber@users.noreply.github.com> Date: Mon, 26 Jul 2021 11:09:32 -0700 Subject: [PATCH] Check for minimum VS subversion and link to workload install instructions for VS (#2398) Signed-off-by: nggieber --- .../Platform/Windows/ProjectUtils_windows.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Code/Tools/ProjectManager/Platform/Windows/ProjectUtils_windows.cpp b/Code/Tools/ProjectManager/Platform/Windows/ProjectUtils_windows.cpp index c0d977a5f5..7ca51fb9c5 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/ProjectUtils_windows.cpp +++ b/Code/Tools/ProjectManager/Platform/Windows/ProjectUtils_windows.cpp @@ -32,7 +32,7 @@ namespace O3DE::ProjectManager vsWherePath, QStringList{ "-version", - "16.0", + "16.9.2", "-latest", "-requires", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", @@ -50,10 +50,11 @@ namespace O3DE::ProjectManager } } - return AZ::Failure(QObject::tr("Visual Studio 2019 not found.\n\n" + return AZ::Failure(QObject::tr("Visual Studio 2019 version 16.9.2 or higher not found.\n\n" "Visual Studio 2019 is required to build this project." " Install any edition of Visual Studio 2019" - " before proceeding to the next step.")); + " or update to a newer version before proceeding to the next step." + " While installing configure Visual Studio with these workloads.")); } } // namespace ProjectUtils