Skip to content

Commit 9c98b56

Browse files
committed
Add helper bat files for 2019 vsix (de)registration
1 parent 7122104 commit 9c98b56

5 files changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
REM Copyright 2013 The Chromium Authors. All rights reserved.
2+
REM Use of this source code is governed by a BSD-style license that can be
3+
REM found in the LICENSE file.
4+
5+
call install_vsix_helper.bat Debug Community 16.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
REM Copyright 2015 The Chromium Authors. All rights reserved.
2+
REM Use of this source code is governed by a BSD-style license that can be
3+
REM found in the LICENSE file.
4+
5+
call install_vsix_helper.bat Release Community 16.0
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
REM Copyright 2013 The Chromium Authors. All rights reserved.
2+
REM Use of this source code is governed by a BSD-style license that can be
3+
REM found in the LICENSE file.
4+
5+
call install_vsix_helper.bat Debug Pro 16.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
REM Copyright 2015 The Chromium Authors. All rights reserved.
2+
REM Use of this source code is governed by a BSD-style license that can be
3+
REM found in the LICENSE file.
4+
5+
call install_vsix_helper.bat Release Pro 16.0

VsixInstall/install_vsix_helper.bat

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ set VSIX_INSTALLER_PATH_2012=C:\Program Files (x86)\Microsoft Visual Studio 11.0
1212
set VSIX_INSTALLER_PATH_2013=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE
1313
set VSIX_INSTALLER_PATH_2015=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE
1414
set VSIX_INSTALLER_PATH_2017=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE
15+
set VSIX_INSTALLER_PATH_2019=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE
1516
set VSIX_INSTALLER_NAME=VSIXInstaller.exe
1617

1718
REM Order is important: Last (i.e. newer) one wins
@@ -20,6 +21,7 @@ if exist "%VSIX_INSTALLER_PATH_2012%\%VSIX_INSTALLER_NAME%" set VSIX_INSTALLER=%
2021
if exist "%VSIX_INSTALLER_PATH_2013%\%VSIX_INSTALLER_NAME%" set VSIX_INSTALLER=%VSIX_INSTALLER_PATH_2013%\%VSIX_INSTALLER_NAME%
2122
if exist "%VSIX_INSTALLER_PATH_2015%\%VSIX_INSTALLER_NAME%" set VSIX_INSTALLER=%VSIX_INSTALLER_PATH_2015%\%VSIX_INSTALLER_NAME%
2223
if exist "%VSIX_INSTALLER_PATH_2017%\%VSIX_INSTALLER_NAME%" set VSIX_INSTALLER=%VSIX_INSTALLER_PATH_2017%\%VSIX_INSTALLER_NAME%
24+
if exist "%VSIX_INSTALLER_PATH_2019%\%VSIX_INSTALLER_NAME%" set VSIX_INSTALLER=%VSIX_INSTALLER_PATH_2019%\%VSIX_INSTALLER_NAME%
2325

2426
if "%VSIX_INSTALLER%"=="" goto installer_not_found
2527

0 commit comments

Comments
 (0)