Replies: 1 comment
-
You probably want to look to migrate forward to WiX5 concepts And likely this PR (the Files element should get rid of the heat harvested component reference issues, but might result in issues with component IDs overlapping, due to source directory not always being taken into account) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
a .NET project depends on a NuGet which copies native library assets with following structure into the output directory
Now HarvestProject generates a
.wxs
with dupplicated Components:Renaming library.dll to library_x86.dll and library_x64.dll isn't possible, since the dll filename for
DLLImport
must be known at compile time. To load either dll at runtime, set the dll search directory (PInvoke.SetDllDirectory(Path.Combine(Environment.CurrentDirectory, "x64"));
Is there a way to avoid duplicated component entries like above?
Beta Was this translation helpful? Give feedback.
All reactions