From b7d780bf131b193a5505c70a41adbc24af949bdb Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Tue, 16 Jun 2026 15:06:44 -0400 Subject: [PATCH] edksetup.bat: Remove VS2017 support The VS2017 toolchain is being removed from edk2. In preparation, this change removes the toolchain as an option in edksetup.bat. Signed-off-by: Michael Kubacki --- edksetup.bat | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/edksetup.bat b/edksetup.bat index 857f61534d..5526c23e84 100755 --- a/edksetup.bat +++ b/edksetup.bat @@ -138,18 +138,16 @@ if /I "%1"=="Mingw-w64" shift if /I "%1"=="VS2026" shift if /I "%1"=="VS2022" shift if /I "%1"=="VS2019" shift -if /I "%1"=="VS2017" shift if "%1"=="" goto end :Usage @echo. - @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [Reconfig] [Rebuild] [ForceRebuild] [Mingw-w64] [VS2026] [VS2022] [VS2019] [VS2017]" + @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [Reconfig] [Rebuild] [ForceRebuild] [Mingw-w64] [VS2026] [VS2022] [VS2019]" @echo. @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt. @echo Rebuild Perform incremental rebuild of BaseTools binaries. @echo ForceRebuild Force a full rebuild of BaseTools binaries. @echo Mingw-w64 Build BaseTools binaries using mingw-w64. - @echo VS2017 Set the env for VS2017 build. @echo VS2019 Set the env for VS2019 build. @echo VS2022 Set the env for VS2022 build. @echo VS2026 Set the env for VS2026 build.