diff options
author | Bob Arnson <bob@firegiant.com> | 2021-12-22 23:52:40 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2021-12-23 12:32:16 -0500 |
commit | b9c712f26d921f7ffe0509d1cc45456680e8139f (patch) | |
tree | 0cb80095c6c9ffe0c01ab9a723c25fd228a48649 /src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage | |
parent | 2f744bf58cc4edb5a712bfff8e7e42baba81768d (diff) | |
download | wix-b9c712f26d921f7ffe0509d1cc45456680e8139f.tar.gz wix-b9c712f26d921f7ffe0509d1cc45456680e8139f.tar.bz2 wix-b9c712f26d921f7ffe0509d1cc45456680e8139f.zip |
Version extension ids.
https://github.com/wixtoolset/issues/issues/5933
- Add support for detecting VS2022.
- Add x64 custom actions.
- Remove ancient Help 2.0 support.
- Update WixCop to add the new element to trigger custom action.
Diffstat (limited to 'src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage')
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/Package.wxs b/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/Package.wxs index c2196807..0434f81f 100644 --- a/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/Package.wxs +++ b/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/Package.wxs | |||
@@ -1,8 +1,10 @@ | |||
1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:vs="http://wixtoolset.org/schemas/v4/wxs/vs"> |
2 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | 2 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> |
3 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> | 3 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
4 | 4 | ||
5 | <vs:FindVisualStudio /> | ||
5 | <PropertyRef Id="VS2017DEVENV" /> | 6 | <PropertyRef Id="VS2017DEVENV" /> |
7 | <PropertyRef Id="VS2022_ROOT_FOLDER" /> | ||
6 | 8 | ||
7 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | 9 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
8 | <ComponentGroupRef Id="ProductComponents" /> | 10 | <ComponentGroupRef Id="ProductComponents" /> |
diff --git a/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/PackageComponents.wxs b/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/PackageComponents.wxs index c8c72cc0..d647e422 100644 --- a/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/PackageComponents.wxs +++ b/src/ext/VisualStudio/test/WixToolsetTest.VisualStudio/TestData/UsingVsixPackage/PackageComponents.wxs | |||
@@ -7,7 +7,6 @@ | |||
7 | <File Name="fake.vsix" Source="example.txt"> | 7 | <File Name="fake.vsix" Source="example.txt"> |
8 | <vs:VsixPackage PackageId="ExampleVsix" /> | 8 | <vs:VsixPackage PackageId="ExampleVsix" /> |
9 | </File> | 9 | </File> |
10 | |||
11 | </Component> | 10 | </Component> |
12 | </ComponentGroup> | 11 | </ComponentGroup> |
13 | </Fragment> | 12 | </Fragment> |