I have
old wix setup project.
I converted it to the v4 version using HeatWave
But the project still uses things that I don’t know if they need forexample
XSLT – Transformation
What do You think, is it necessary ?
<HeatDirectory Transforms="$(ProjectDir)Components.xslt" OutputFile="ComponentsGenerated.wxs" DirectoryRefId="TARGETDIR" ComponentGroupName="PublishedComponents" SuppressUniqueIds="false" SuppressCom="true" Directory="..SposOnboard.Applicationbin$(Configuration)" SuppressFragments="true" SuppressRootDirectory="true" AutogenerateGuids="false" GenerateGuidsNow="true" PreprocessorVariable="var.BasePath" SuppressRegistry="true" />
The transforms are still necessary, as the upgrade to v4 did not change or obsolete their functionality.
Transforms are super useful for modifying the heat harvest output without touching the directory structure itself. Anything they did in v3 will still be needed in v4.
If you want to remove it and keep the same end result, you will likely need to modify the folders/files in SposOnboard.Applicationbin$(Configuration) to have what you need with no transformation. You can get more specific advice on what that could look like if you show us the transform file.