Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit caf425d

Browse files
committed
Votive only supports WiX v3
1 parent 6f74d6d commit caf425d

40 files changed

+71
-55
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# WiX Toolset Visual Studio Extension (aka: Votive)
1+
# WiX v3 - Visual Studio Extension (aka: Votive)
22

3-
This repository contains the code for the WiX Toolset Visual Studio Extension. To install
3+
This repository contains the code for the WiX v3 - Visual Studio Extension. To install
44
the extension, use the Extension Manager inside Visual Studio or visit the
55
[Visual Studio Marketplace][marketplace].
66

7-
The following links will take you to more details:
7+
**Note:** This Visual Studio Extension DOES NOT support WiX v4 based projects. To load
8+
WiX v4 projects in Visual Studio, install [HeatWave for VS2022][heatwave] (or [for VS2019][heatwave16]).
89

9-
## [Home page](http://wixtoolset.org/ "WiX Toolset home page")
10-
## [Releases](http://wixtoolset.org/releases/ "WiX Toolset stable and weekly releases")
11-
## [Bugs and feature requests](http://wixtoolset.org/issues/ "Files bugs and feature requests for WiX Toolset ")
12-
## [Manual](http://wixtoolset.org/documentation/manual/ "WiX Toolset manuals and documentation links")
13-
## [Hacking on WiX](http://wixtoolset.org/development/ "About development on the WiX Toolset")
1410

1511
[marketplace]: https://marketplace.visualstudio.com/search?term=wix%20toolset&target=VS&sortBy=Relevance
12+
[heatwave]: https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev17
13+
[heatwave16]: https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev16

src/Schemas/v3/redirects/wix.ca.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
<Import Project="$(WixMSBuildFolder)wix.ca.targets" Condition=" Exists('$(WixMSBuildFolder)wix.ca.targets') " />
99
<Target Name="EnsureActualWixToolsetInstalled" Condition=" '$(WixCATargetsImported)' != 'true' ">
10-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. Could not find wix.ca.targets at '$(WixMSBuildFolder)'. To download WiX Toolset v3.11 (or newer), see http://wixtoolset.org/releases/" />
10+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. Could not find wix.ca.targets at '$(WixMSBuildFolder)'. To download WiX Toolset v3.11, see https://wixtoolset.org/releases/v3.11/stable" />
1111
</Target>
1212
</Project>

src/Schemas/v3/redirects/wix.nativeca.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
<Import Project="$(WixMSBuildFolder)wix.nativeca.targets" Condition=" Exists('$(WixMSBuildFolder)wix.nativeca.targets') " />
99
<Target Name="EnsureActualWixToolsetInstalled" Condition=" '$(WixNativeCATargetsImported)' != 'true' ">
10-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. Could not find wix.nativeca.targets at '$(WixMSBuildFolder)'. To download WiX Toolset v3.11 (or newer), see http://wixtoolset.org/releases/" />
10+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. Could not find wix.nativeca.targets at '$(WixMSBuildFolder)'. To download WiX Toolset v3.11, see https://wixtoolset.org/releases/v3.11/stable" />
1111
</Target>
1212
</Project>

src/Schemas/v3/redirects/wix.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
<Import Project="$(WixMSBuildFolder)wix.targets" Condition=" Exists('$(WixMSBuildFolder)wix.targets') " />
99
<Target Name="EnsureActualWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
10-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. Could not find wix.targets at '$(WixMSBuildFolder)'. To download WiX Toolset v3.11 (or newer), see http://wixtoolset.org/releases/" />
10+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. Could not find wix.targets at '$(WixMSBuildFolder)'. To download WiX Toolset v3.11, see https://wixtoolset.org/releases/v3.11/stable" />
1111
</Target>
1212
</Project>

src/Schemas/v3/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Identity Id="WixToolset.VisualStudioExtension.Schemas3" Version="|v3schemas;GetBuildVersion|" Language="en-US" Publisher="WiX Toolset" />
55
<DisplayName>WiX Toolset v3 Schemas for Visual Studio</DisplayName>
66
<Description>Visual Studio integraion for the WiX Toolset v3 schemas</Description>
7-
<MoreInfo>http://wixtoolset.org/</MoreInfo>
7+
<MoreInfo>https://wixtoolset.org/</MoreInfo>
88
<Icon>WixLogo.png</Icon>
99
<PreviewImage>WixLogo.png</PreviewImage>
1010
</Metadata>

src/Schemas/v3/v3schemas.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<DeployVSTemplates>false</DeployVSTemplates>
1717
<NuGetPackageImportStamp>
1818
</NuGetPackageImportStamp>
19+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
20+
<TargetFrameworkProfile />
1921
</PropertyGroup>
2022
<Import Project="..\..\..\tools\WixBuild.csproj.props" />
2123
<ItemGroup>

src/Templates/v3/Projects/CustomActionCPP/CustomAction.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<Import Project="$(WixNativeCATargetsPath)" Condition=" '$(WixNativeCATargetsPath)' != '' " />
121121
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.NativeCA.targets" Condition=" '$(WixNativeCATargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.NativeCA.targets') " />
122122
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixNativeCATargetsImported)' != 'true' ">
123-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
123+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. To download the WiX Toolset, see https://wixtoolset.org/releases/v3.11/stable" />
124124
</Target>
125125

126126
<ImportGroup Label="ExtensionTargets">

src/Templates/v3/Projects/CustomActionCS/CustomAction.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
<Import Project="$(WixCATargetsPath)" Condition=" '$(WixCATargetsPath)' != '' " />
5454
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.CA.targets" Condition=" '$(WixCATargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.CA.targets') " />
5555
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixCATargetsImported)' != 'true' ">
56-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
56+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. To download the WiX Toolset, see https://wixtoolset.org/releases/v3.11/stable" />
5757
</Target>
5858
</Project>

src/Templates/v3/Projects/CustomActionVB/CustomAction.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ $endif$
6161
<Import Project="$(WixCATargetsPath)" Condition=" '$(WixCATargetsPath)' != '' " />
6262
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.CA.targets" Condition=" '$(WixCATargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.CA.targets') " />
6363
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixCATargetsImported)' != 'true' ">
64-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
64+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. To download the WiX Toolset, see https://wixtoolset.org/releases/v3.11/stable" />
6565
</Target>
6666
</Project>

src/Templates/v3/Projects/WixBundleProject/BundleProject.wixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
3131
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
3232
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
33-
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
33+
<Error Text="The WiX Toolset v3.11 build tools must be installed to build this project. To download the WiX Toolset, see https://wixtoolset.org/releases/v3.11/stable" />
3434
</Target>
3535
<!--
3636
$loc_WIXPROJ_TOMODIFY_LINE1$

0 commit comments

Comments
 (0)