You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ext/VisualStudio/wixlib/VsixPackage.wxs
+34-2Lines changed: 34 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
1
+
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<!-- VWD2012 registers differently than the rest of Visual Studio, so search for it in the case VS2012 is missing. -->
@@ -46,7 +70,15 @@
46
70
</Property>
47
71
48
72
<!-- Use the latest VS- or VWD-installed VSIXInstaller.exe. -->
49
-
<SetPropertyAction="SetVS2015Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2015_VSIX_INSTALLER_PATH]"Sequence="both"After="AppSearch"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2015_VSIX_INSTALLER_PATH" />
73
+
<SetPropertyAction="SetVS2026Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2026_VSIX_INSTALLER_PATH]"Sequence="both"After="AppSearch"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2026_VSIX_INSTALLER_PATH" />
74
+
75
+
<SetPropertyAction="SetVS2022Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2022_VSIX_INSTALLER_PATH]"Sequence="both"After="SetVS2026Vsix"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2022_VSIX_INSTALLER_PATH" />
76
+
77
+
<SetPropertyAction="SetVS2019Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2019_VSIX_INSTALLER_PATH]"Sequence="both"After="SetVS2022Vsix"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2019_VSIX_INSTALLER_PATH" />
78
+
79
+
<SetPropertyAction="SetVS2017Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2017_VSIX_INSTALLER_PATH]"Sequence="both"After="SetVS2019Vsix"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2017_VSIX_INSTALLER_PATH" />
80
+
81
+
<SetPropertyAction="SetVS2015Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2015_VSIX_INSTALLER_PATH]"Sequence="both"After="SetVS2017Vsix"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2015_VSIX_INSTALLER_PATH" />
50
82
<SetPropertyAction="Vwd2015VsixWhenVSAbsent"Id="VS_VSIX_INSTALLER_PATH"Value="[VWD2015_VSIX_INSTALL_ROOT]\Common7\IDE\VSIXInstaller.exe"Sequence="both"After="SetVS2015Vsix"Condition="NOT VS_VSIX_INSTALLER_PATH AND VWD2015_VSIX_INSTALL_ROOT" />
51
83
52
84
<SetPropertyAction="SetVS2013Vsix"Id="VS_VSIX_INSTALLER_PATH"Value="[VS2013_VSIX_INSTALLER_PATH]"Sequence="both"After="Vwd2015VsixWhenVSAbsent"Condition="NOT VS_VSIX_INSTALLER_PATH AND VS2013_VSIX_INSTALLER_PATH" />
0 commit comments