Replies: 9 comments 2 replies
-
What happens if you add a |
Beta Was this translation helpful? Give feedback.
-
Could you describe in more detail. So far I don't quite understand your idea. |
Beta Was this translation helpful? Give feedback.
-
I used this artical . But unable to find package WixToolset.Heat
|
Beta Was this translation helpful? Give feedback.
-
You can use HeatWave to add the package reference or edit your .wixproj to add:
|
Beta Was this translation helpful? Give feedback.
-
I already used it, same error |
Beta Was this translation helpful? Give feedback.
-
I don't know what "it" refers to in your statement. At this point, it's probably best if you provide a GitHub repo that demonstrates the issue. |
Beta Was this translation helpful? Give feedback.
-
I created repo |
Beta Was this translation helpful? Give feedback.
-
Converting to discussion. |
Beta Was this translation helpful? Give feedback.
-
Three issues with the contents of the repo:
Hope this helps someone in the future. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I converted the WiX3 project to WiX4. This worked in WiX3. In WiX4 has error:
42>E:\Work\Solution\XtraEditors\MergeModule.wxs(7): error WIX0094: The identifier 'WixComponentGroup:XtraEditorsDemoCenter.Binaries' could not be found. Ensure you have typed the reference correctly and that all the necessary inputs are provided to the linker.
How to port from version 3x to version 4x properly RefProjectOutputGroups in ProjectReference?
XtraEditor.wixproj
<Project Sdk="WixToolset.Sdk/4.0.0-rc.2">
<PropertyGroup>
<OutputType>Module
<OutputNameSuffix>.XtraEditorsDemoCenter
<EnableProjectHarvesting>True
<SuppressValidation>true
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\XtraEditorsDemoCenter\XtraEditorsDemoCenter.csproj">
<Name>XtraEditorsDemoCenter
<Project>{487e2f48-e213-466a-8abe-7b6bbf66fb00}
<Private>True
<DoNotHarvest>
<RefProjectOutputGroups>Binaries;Content;Satellites
<RefTargetDir>DEMOCENTER
</ProjectReference>
</ItemGroup>
</Project>
MergeModule.wxs
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Module Language="1033" Codepage="1251" Version="$(var.FileVersion)" Id="$(var.MainProduct).$(var.SubProduct)_$(var.FileVersion).XtraEditorsDemoCenter" Guid="{171E70A8-686B-4AE4-93C1-02645515F75C}" InstallerVersion="200">
<SummaryInformation Description="$(var.MainProduct).$(var.SubProduct)-$(var.FileVersion).DemoCenter" Keywords="msi,installer" Manufacturer="$(var.Manufacturer)" Codepage="1251" />
<ComponentGroupRef Id="XtraEditorsDemoCenter.Binaries" />
<ComponentGroupRef Id="XtraEditorsDemoCenter.Content" />
<Directory Id="DEMOCENTER" Name="." />
</Module>
</Wix>
Beta Was this translation helpful? Give feedback.
All reactions