-
Hello, I have been stuck on this issue for a little while now and I am unsure how to proceed. For context, I am working on an opensource tool that is used to create installer files for JAVA for Windows, MacOS, and Linux. This repo is adoptium/installer and we want it to be able to produce MSIX files in addition to MSIs. In the past, I updated it from WiX v3 to WiX v5, and it is currently on version I am following the FireGiant documentation (and the FireGiant/WiX Schema docs) to attempt to get the initial mvp for MSIX creation, but I keep getting an error saying that it cannot find the file that I've specified as part of the When installing our Java package, it installs in the folder
Then, I created the
And lastly, I added a feature that adds the
I am unsure what I could do that I haven't tried in my Note: I am not committed to using this structure and I am very open to trying another approach (ie: like including this new component in the 1 existing feature that existed before these changes). Also, this is just a hardcoded first draft (I plan to parameterize and cleanup this code once I get the MSIX creation working). Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Here is the error that I recieved:
|
Beta Was this translation helpful? Give feedback.
-
That error indicates that the file |
Beta Was this translation helpful? Give feedback.
-
Thanks @robmen! I actually found your tutorial series on YouTube and it helped me figure out the gap in my knowledge:
|
Beta Was this translation helpful? Give feedback.
Thanks @robmen! I actually found your tutorial series on YouTube and it helped me figure out the gap in my knowledge:
Directory
andFile
tags refer to "where files end up" and the attributes refer to "where they come from." I was also couldn't find the variable that this tool used for source files (ie before packaging) that can go within aSource
attribute's value. Here is the code that ended up working for me: